Page 1 of 1

what's the difference between the following two options?

Posted: Sun Jun 07, 2009 10:07 am
by zulfi123786
I have seen that in an odbc stage there are two update actions
1) clear table then insert rows
2)Replace existing rows completely

can anyone tell me whats the difference b/w the two?

Posted: Sun Jun 07, 2009 10:37 am
by chulett
Select each one and then examine the generated sql, the difference should be easy to spot. And 'clear' here means a 'transactional delete' of all rows in the table, as opposed to a truncate which is not transactional.