I'm looking to use sql server compact edition for an application where users will not always be connected to the internet. Once the users regain an internet connection, I want them to be able to send the data to the enterprise sql server.
I started thinking about this and I don't want to have to loop through a recordset to submit each record one-by-one.
Normally, I would just do something like the following:
insert into table2
select * from table1
Can someone tell me how to proceed or easily send the data from the compact edition to the enterprise edition?