Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 computed columns asynchronously updating?

Author  Topic 

jholovacs
Posting Yak Master

163 Posts

Posted - 2008-03-19 : 14:07:28
I have a checksum calculation as a persisted, indexed computed column on a temporary table that I used to compare against original records to detect changes.

It seems that the update/ insert statements in my procs get out of sync on larger tables (500,000 rows +) with the checksum calculations. The only thing I can think of is that the column calculations are performed asynchronously in relation to the updates/ inserts. This is a problem for me.

Is my assumption correct? If it is, how can I adjust for this, i.e., force the computations to be performed synchronously or wait for the computations to complete before running comparisons?

-Jeremy

___________________________
Geek At Large

jholovacs
Posting Yak Master

163 Posts

Posted - 2008-03-20 : 08:27:53
Nobody has any input? This is disappointing.

___________________________
Geek At Large
Go to Top of Page
   

- Advertisement -