SantaMufasa
Technical User
Today, we again encountered the error:
...then did a full database backup of the database in question.
By what method/setting/et cetera can we avoid the transaction log becoming full? How can we keep the size manageable without on-going manual intervention?
Mufasa
(aka Dave of Sandy, Utah, USA)
[I provide low-cost, remote Database Administration services: www.dasages.com]
To resolve this problem, as we have done in the past, we successfully issued the commands:Error Message said:The transaction log for database '<db name>' is full.
Code:
backup log <database> with truncate_only
go
use <database>
go
dbcc shrinkfile (2, 10)
go
By what method/setting/et cetera can we avoid the transaction log becoming full? How can we keep the size manageable without on-going manual intervention?
Mufasa
(aka Dave of Sandy, Utah, USA)
[I provide low-cost, remote Database Administration services: www.dasages.com]