What is the best way to do the following:
tblLive
code
1
2
3
4
I need to copy and append tblLive to tblSaved. tblLive will keep incrementing data with unique keys in which I have to also added to the tblSaved table.
I was thinking I need to mark the records I get initially and only go after differences there after. I wanted to get some thoughts on this, most efficient way...
tblLive
code
1
2
3
4
I need to copy and append tblLive to tblSaved. tblLive will keep incrementing data with unique keys in which I have to also added to the tblSaved table.
I was thinking I need to mark the records I get initially and only go after differences there after. I wanted to get some thoughts on this, most efficient way...