Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
carloarango
Starting Member
15 Posts |
Posted - 2010-04-14 : 11:04:28
|
I have Backups setup thru Maintenance plans; how can I prevent SQL to write to the SQL and event logs every time it succeeds; I have about 200 DBs and keeps filling up the Application Event Log and besides it is making harder to read the SQL logs.Thanks. |
|
Peter99
Constraint Violating Yak Guru
498 Posts |
Posted - 2010-04-14 : 16:49:21
|
Enable trace flag 3226 through startup parameter |
 |
|
Peter99
Constraint Violating Yak Guru
498 Posts |
Posted - 2010-04-14 : 16:52:19
|
or just run dbcc traceon(3226) in query analyzer |
 |
|
Peter99
Constraint Violating Yak Guru
498 Posts |
Posted - 2010-04-15 : 11:44:08
|
correction:Disable trace 3226 that will stop logging backup info. in sql server logsdbcc traceoff(3226) |
 |
|
|
|
|