I am getting following error while I am trying to delete 355447 records in single delete query.
The transaction log for database is full. To find out why space in the lo
As an aside, it is always a good practice (and possibly a solution for this type of issue) to delete a large number of rows by using batches:
WHILE EXISTS (SELECT 1 FROM YourTable WHERE ) DELETE TOP(10000) FROM YourTable WHERE