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
First of all, note that you cannot NOT have a transaction log.. what if you lose power in the server while doing a huge delete? This information is needed so SQL Server can perform atomic operations..
What might be of interest to you though is "recovery model”. Please read this article on technet: http://technet.microsoft.com/en-us/library/ms189275.aspx