What is the fastest way to compare 2 rows in SQL?
Posted
by Swoosh
on Stack Overflow
See other posts from Stack Overflow
or by Swoosh
Published on 2010-04-12T10:17:30Z
Indexed on
2010/04/12
10:23 UTC
Read the original article
Hit count: 210
I have 2 different databases. Upon changing something in the big one (i don't have access to), i get some rows imported in my databases in a similar HUGE table. I have a job checking for records in this table, and if any, execute a stored procedure, process and delete from table.
Performance. (Huge amount of data) I would like to know what is the fastest way to know if something has changed using let's say 2 imported rows with 100 columns each. Don't have FK-s, don't need. Chances are, that even though I have records in my table, nothing has actually changed.
Also. Let's say there is actually changed something. Is it possible for example to check only for changes inside datetime columns?
Thanks
© Stack Overflow or respective owner