Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do you know if a SQL table has been changed since the last time you used it?
    primarykey
    data
    text
    <p>Is there a way to know if the data in a SQL Server 2008 R2 table has changed since the last time you used it? I would like to know of any type of change -- whether a new record has been inserted or an existing one has been modified or deleted.</p> <p>I am not interested in what the particular change might have been. I am only interested in a boolean value that indicates whether or not the table data has been changed.</p> <p>Finally, I want a simple solution that does not involve writing a trigger for each CRUD operation and then have that trigger update some other log table.</p> <p>I have C# program that is meant to insert a large amount of initial data into some database tables. This is a one off operation that is supposed to happen only once, or rarely ever again if ever, in the life of the application. However, during development and testing, though, we use this program a lot.</p> <p>Currently, with about the 10 tables that it inserts data into, each having about 21,000 rows per table, the program takes about 45 seconds to run. This isn't really a huge problem as this is a one-off operation that is anyway going to be done internally before shipping the product to the customer.</p> <p>Still, I would like to minimize this time. So, I want to not insert data into a table if there has been no change in the table data since my program last used it.</p> <p>My colleague told me that I could use the <a href="http://technet.microsoft.com/en-us/library/ms188920%28v=sql.100%29.aspx" rel="nofollow"><code>CHECKSUM_AGG</code></a> function in T-SQL. My question(s) are:</p> <p>1) If I compute the <code>CHECKSUM_AGG(Cast(NumericPrimaryKeyIdColumn AS int))</code>, then the checksum only changes if a new row has been added or an existing one deleted, right? If someone has only modified values of other columns of an existing row in the table, that will have no impact on the checksum aggregate of the ID column, right? Or will it?</p> <p>2) Is there another way I can solve the problem of knowing whether table data has changed since the last time my program used it?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload