vote up 1 vote down star
1

What is the LDF file in SQL Server? what is its purpose?

can I safely delete it? or reduce its size because sometimes it's 10x larger than the database file mdf.

flag
3  
Thank you for asking before just deleting. I've had too many, "So I just deleted this file that's not used by anything and now nothing works..." calls that I have to take the moment and thank you from the bottom of my heart. – Eric May 5 at 20:45

3 Answers

vote up 5 vote down

The LDF file holds the database transaction log. See, for example, http://www.databasedesign-resource.com/sql-server-transaction-log.html for a full explanation. There are ways to shrink the transaction file; for example, see http://support.microsoft.com/kb/873235.

link|flag
vote up 2 vote down

The LDF is the transaction log. It keeps a record of everything done to the database for rollback purposes.

You do not want to delete, but you can shrink it with the 'dbcc shrinkfile' command. You can also right-click on the database in SQL Server Manager and go to tasks->shrink.

link|flag
vote up 1 vote down

ldf saves the log of the db, certainly doesn't saves any real data, but is very important for the proper function of the database.

You can however change the log model to the database to simple so this log does not grow too fast.

Check this for example. Check http://support.microsoft.com:80/support/kb/articles/q256/6/50.asp&NoWebContent=1">here for reference

link|flag
1  
If you are not doing separate data and transaction log backups, the log file will grow indefinitely unless you set backups to simple mode. You can then recover disk space by shrinking the log file. – Richard May 5 at 20:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.