I have got an a partition that is 150GB I also have Microsoft SQL server on that volume, the problem is I got a couple different databases on that volume, but I can't shrink the log files because there is no space left.
I tried right click on a DB /tasks/shrink/files & also database.
I get this error message.
Microsoft SQL Server Management Studio
Shrink failed for Database 'cterm_across'. (Microsoft.SqlServer.Smo)
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
The transaction log for database 'cterm_across' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases (Microsoft SQL Server, Error: 9002)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=10.50.1617&EvtSrc=MSSQLServer&EvtID=9002&LinkId=20476
How can I walk around this?
Thank you in advance
SELECT d.recovery_model, d.recovery_model_desc, d.log_reuse_wait, d.log_reuse_wait_desc FROM sys.databases d WHERE d.name = 'cterm_across'- first two columns describe the recovery model - CeOnSql