vote up 0 vote down star

I have implemented delta detection while loading data warehouse from transaction systems using an identity column or date-time column in source transaction tables. When data needs to be extracted next time, the maximum date-time value extracted last time is used in the filter of extraction query to identify new or changed records. This was good enough except when there were multiple transactions at the same milli second.

But now we have Change Data Capture (CDC) with SQL Server 2008 and it provides a new stuff called LSN (Log Sequence Number) which is binary of length 10. Now I am confused. Which data should be stored for windowing purpose, the LSN or the date-time. Of course LSN eliminates the need for storing additional date-time values in large transaction tables, but does this have any disadvantages? Which one should I use? I feel, the mapping of LSN to date-time and then storing date-time is not a reliable method. What is your opinion?

PS: To, non-BI professionals, Sorry.

flag

80% accept rate

2 Answers

vote up 1 vote down

See Improving Incremental Loads with Change Data Capture for information on using CDC with SSIS.

link|flag
Using date has the disadvantage that it cannot differentiate between the records inserted/modified at the same second unless the latest datetime2 type is used. In the examples given there they are using the old datetime data type. Looks like the author is not worried about this fact. – Faiz Jul 16 at 13:32
vote up 0 vote down check

After a lot of wait I don't see any further answers here. I have used LSN in my current project for windowing and I find it better than date time values as it is more precise and the process is simple. I recommend using LSN. If anyone out there disagree, please let me know...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.