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
Just Try to delete the records by adding these statements before and after the delete statements. traceon(610) and traceoff(610). it is like this
traceon(610)
traceoff(610)
dbcc traceon(610) --Your Delete Statement delete statement dbcc traceoff(610)