Pending table

This script creates a pending table in the replicate database.

-- Execute this script at Sydney data server
 -- Creates local pending table 
 create table publishers_pend
 (pub_id char(4) not null,
 pub_name varchar(40) null,
 city varchar(20) null,
 state	char(2) null)
 go
 /* end of script */