I know it is possible to get the changes to a single table in SQL Server 2008 using change tracking. However I have not been able to find an acceptable way to query all the changes in the entire database in a single query.
Is this possible?
What are your thoughts on writing some dynamic SQL and using exec to get this done? Are there any example of this you can point me to?
Are there any other alternatives to monitoring specific column/row data changes in SQL Server 2008 which require lesser effort than writing and maintaining triggers? Our DB has more than 1500 tables and this is not an option.
Thanks