Home Forums SQL Server 7,2000 General find out the modified table and its column details RE: find out the modified table and its column details

  • Here are the options I know of for what you want to do and the SQL Server version(s) it will work on:

    1. DDL Triggers - all versions

    2. Stored Procedures that do all CRUD operations and do the logging as part of the procedure - all versions

    3. Change Data Capture (CDC) - 2008 or later.