publication-name
The name of the publication to which the user is being subscribed. This can include the owner of the publication.
subscription-value
A string that is compared to the subscription expression of the publication. The subscriber receives all rows for which
the subscription expression matches the subscription value.
subscriber-id
The user ID of the subscriber to the publication. At the consolidated database, when you create a subscription to a remote
user, the remote user must have been granted REMOTE permission. At the remote database, when you create a subscription to
the consolidated user, that user must have been granted CONSOLIDATED permission.
In SQL Remote, publications and subscriptions are two-way relationships. If you create a subscription for a remote user to
a publication on a consolidated database, you should also create a subscription for the consolidated user to a publication
on the remote database. By default, the Extraction utility (dbxtract) and the Extract Database Wizard grant the appropriate PUBLISH and CONSOLIDATE permissions to users in the remote databases.
If subscription-value is supplied, it is matched against each SUBSCRIBE BY expression in the publication. The subscriber receives all rows for
which the value of the expression is equal to the supplied string.
The following statement creates a subscription for the user p_chin to the publication pub_sales. The subscriber receives all
rows for which the subscription expression has a value of Eastern.
CREATE SUBSCRIPTION
TO pub_sales ( 'Eastern' )
FOR p_chin;