Turn off entries in Application Log
GaryHampson
Posts: 19
Is there a way to turn off writing to the Application Event Log upon RESTORE or BACKUP?
Comments
these messages are generated by SQL Server, and are generated for both native and third-party backups. I don't know of any option to turn this off.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
DBCC TRACEON (3226, -1)
To persist the setting between reboots, go into the server properties and then the startup parameters, and add -T3226. Otherwise you will get event logging again if you restart SQL Server.
This should stop SQL Server from writing backup events to the event log. If you have enabled event logging for the job in the SQL Agent's job properties, that would probably override the trace flag, so you would want to check the notifications tab of your job properties to make sure it's not going to get logged that way.
I hope this helps!