Viewing 2 posts - 1 through 2 (of 2 total)
For getting records present in Table2 but not in Table1,
you need to join these two tables using left outer join as:
Select A.*
from Table2 A left outer join...
March 17, 2010 at 4:42 am
#1135100
since we have many threads, which may concurrently try to insert a record to this table, thus I have used this lock to prevent this from happening
December 1, 2008 at 4:27 am
#905475