Click here to Skip to main content
15,797,923 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
The transaction log for database 'Database' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases

Even i cannot delete the rows from sql server, because of this problem

How to solve this problem
Posted

Use those SQL to free log space

BACKUP LOG [LOGNAME] WITH NO_LOG

DBCC SHRINKFILE ([DBNAME],EMPTYFILE)


and read more about Database Recovery Models
 
Share this answer
 
Right click on the database name and select Tasks -> Shrink -> Database and the the OK button.

Good luck!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900