Change Tracking & Change Data Capture

Discussion in 'Databases' started by Kazooie, Feb 1, 2010.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. dmitri

    dmitri DiscountASP.NET Staff

    Change Tracking is supported on our SQL Servers 2008. Before using it, you will need to enable change tracking first at database level, and then at the table level. You can use the following T-SQL code below or GUI in your Management Studio.

    Code:
    ALTER DATABASE [YourDatabaseName]
    SET CHANGE_TRACKING = ON
    
    Code:
    ALTER TABLE [YourTableName]
    ENABLE CHANGE_TRACKING
    

    Change Data Capture is not supported in our shared hosting environment because of the storage and performance overhead involved.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page