When you create a subscription for a table replication definition, rows that fit the subscription are copied from the primary to the replicate table in a process called materialization. After materialization is complete, Replication Server distributes row changes in the primary database through normal replication.
If a subscription involves many rows, materialization can hold locks for a long time and overload the network. Replication Server queues may also fill with data. To avoid these problems, Replication Server provides four different ways to materialize a subscription.
Atomic materialization is the default method for table replication definitions. Replication Server selects rows at the primary table, using a holdlock, and copies them over the network. The primary table is locked during materialization and data is consistent between the primary and replicate tables.
In nonatomic materialization, Replication Server selects rows at the primary table, without using a holdlock, and copies them over the network. Because the primary table is not locked, the replicate may go through visible steps that did not exist at the primary while nonatomic materialization is in progress.
In nonmaterialization, the primary and replicate data is already in sync. You do not need to copy data over the network or load it from media. No updates can be in process while such a subscription is created.
In bulk materialization, data is manually unloaded and loaded from media. This is the most efficient way to materialize subscriptions that involve a large amount of data.
For more information about subscription materialization methods, see the Replication Server Administration Guide Volume 1.
Bulk materialization is used to manually coordinate subscription status and to transfer data for function replication definitions or database replication definitions.
define subscription – adds a subscription to the system tables at the primary and replicate Replication Server.
activate subscription – starts the distribution of updates from the primary database to the replicate database and sets the subscription status to ACTIVE.
After you use this command and verify status, manually load initial data from media into the replicate database. Use the with suspension option to prevent data from being applied to the replicate database until the load from media is complete.
validate subscription – completes bulk materialization and changes the subscription status to VALID. Replication Server is notified that materialization is complete.