Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Transaction log on master full

Status
Not open for further replies.

slimmer

Programmer
Oct 21, 2002
11
US
When executing a script to update our database, the sql is being suspended due to the transaction log on master being full. Once I dump the log on master, not the database I am updating, our queries work fine.

The master database has no options set and I cannot add any to master however the database we are updating does have the option to trunc log on chkpt.

Can anyone explain why the log on master is filling up and not the one on the database I am updating?

Help is appreciated.
 
I dumped with the command
dump transaction master with no_log
 
If you execute the following command then I master transaction log will not be used.

exec sp_diskdefault 'master', 'defaultoff'
exec sp_diskdefault 'your_db_name', 'defaulton'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top