Is there a way to know when the database is changed and get mail notification on it.
How could it be done on SQL Server?
Note: I rather not use Exchange mail.
update:
looking throw msdn guides , they seem irelevent since there is not such thing as “databse mail”
http://msdn.microsoft.com/en-us/library/ms175951%28v=SQL.90%29.aspx
Which aspect of the database would you like to monitor? Objects like tables added or droppen, dabase settings changed?
You could use a database level DDL trigger (SQL Server 2005 and newer) and watch for events.
http://msdn.microsoft.com/en-us/library/ms190989.aspx