Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » Views » System views in Sybase Central

SYSPROCPERM system view Next Page

SYSPROXYTAB system view


Each row of the SYSPROXYTAB system view describes the remote parameters of one proxy table. The underlying system table for this view is ISYSPROXYTAB.

Columns
Column nameColumn typeColumn constraint
table_object_idUNSIGNED BIGINTNOT NULL
existing_objCHAR(1)
srvidUNSIGNED INT
remote_locationLONG VARCHAR

table_object_id    The object ID of the proxy table.

existing_obj    Indicates whether the proxy table previously existed on the remote server (Y/N).

srvid    The unique ID for the remote server associated with the proxy table.

remote_location    The location of the proxy table on the remote server.

Constraints on underlying system table

PRIMARY KEY (table_object_id)

FOREIGN KEY (table_object_id) references ISYSOBJECT (object_id) MATCH UNIQUE FULL

FOREIGN KEY (srvid) references SYS.ISYSSERVER (srvid)