How to delete records from SQL Server 2005 tables without logging them into transaction logs.
I do not wish to log because once deleted, those records will never be
If you are deleting an entire table you could use TRUNCATE TABLE, which only logs the page deallocations rather than having an entry for each row deleted. I'm not aware of any way to do deletions without any transaction logging at all.