Create a pending table in the remote database using the sample script.
-- 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,
statechar(2) null)
go
/* end of script */