Initializing A Subscription From A Filegroup Backup - SQL Server 2005
One of the new features of SQL Server 2005 replication is the ability to initialize a Subscription from a backup instead of applying a snapshot.This is a welcome feature, but it also leads me to a question.
Assume I have implemented a filegroup backup strategy.My Subscriber database has two filegroups: one contains tables that are replicated, the other contains tables that are NOT replicated.I shut down replication while I load a large data file.The load takes more than 24 hours.I now need to resynchronize my Subscriber.
Would I be able to initialize my Subscription by restoring only the backup of the filegroup for the replicated tables?

