Chapter 18. Command Referencefor Adaptive Server Enterprise
Thetwo tables must have the same columns and data types as table
table_name
.
Examples Thefollowing statement marks the Customer table for replication, using
defaultconflict resolution:
exec sp_add_remote_table Customer
Thefollowing statement marks the Customer table for replication, using a
storedprocedure named Customer_Conflict to resolve conflicts. Theold
andremote rows are stored in tables named old_Customer and
remote_Customer,respectively:
exec sp_add_remote_table Customer, Customer_Conflict, old_
Customer, remote_Customer
385