CREATE TABLE SYS.SYSPUBLICATION ( publication_id UNSIGNED INT NOT NULL, creator UNSIGNED INT NOT NULL, publication_name CHAR(128) NOT NULL, remarks LONG VARCHAR, PRIMARY KEY ( publication_id ), FOREIGN KEY ( creator ) REFERENCES SYS.SYSUSERPERM (user_id ) )
Each row describes a SQL Remote publication.
publication_id A unique identifying number for the publication.
creator The owner of the publication.
publication_name The name of the publication, which must be a valid identifier.