I have a Foxpro app with a view to SQL-Server Table through which I first have to delete all the current records and append new ones. My current process (below),- A delete statement, then an Append from statement - is too slow. Is there a faster or better way?
** View name is Load_data **
use load_data
delete from load_data
append from Newdata
Many thanks in advance for any help on this matter
HJ
** View name is Load_data **
use load_data
delete from load_data
append from Newdata
Many thanks in advance for any help on this matter
HJ