we are trying to target the re-initialization of a subscription at certain subscribers at the same time.the following has been successful for a single subscriber:sp_reinitsubscription @publication = 'my_publication',@subscriber = 'subscriber1', @destination_db = 'dest_dbase',@invalidate_snapshot = 1substituting 'all' works for all the subscribers:sp_reinitsubscription @publication = 'my_publication',@subscriber = 'all', @destination_db = 'dest_dbase',@invalidate_snapshot = 1is there a syntax that allows for specifying multiple subscriptions but not all - say defining 10 subscriptions out of 20?any help would be appreciated.
↧