ReinitializeSubscription() method

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In the .net compact framework, there is a method called
ReinitializeSubscription().

There is a boolean parameter with this method where you can choose to upload
the data from sql server ce to sql server 2000 is it is set to true.

After the upload sql server 2000 provides a snapshot to the subscriber ( sql
server ce)

If the parameter is set to false, then sql server provides the snapshot
without upload before.

So is my conclusion right when I say:

If the parameter is set to false: sql server 2000 uploads his data to sql
server ce
If the parameter is set to true: sql server ce uploads his data do sql
server 2000

Regards
Frederik Duchi
 
when set to ReinitializeSubscription(true):
All changes from SQL Server CE are uploaded to SQL Server 2000, then your
old local snapshot is overwritten with the current SQL Server 2000 data.

when set to ReinitializeSubscription(false):
all changes from SQL Server CE are ignored and your old local snapshot is
overwritten with the current SQL Server 2000 data.
 
Back
Top