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

SYSREMOTEOPTIONTYPE system view Next Page

SYSREMOTETYPE system view


The SYSREMOTETYPE system view contains information about SQL Remote. The underlying system table for this view is ISYSREMOTETYPE.

Columns
Column name Column type Column constraint
type_id SMALLINT NOT NULL
object_idUNSIGNED BIGINTNOT NULL
type_name CHAR(128) NOT NULL
publisher_address LONG VARCHAR NOT NULL
remarks LONG VARCHAR

type_id    Identifies which of the message systems supported by SQL Remote is to be used to send messages to the user.

object_id    The internal ID for the remote type, uniquely identifying it in the database.

type_name    The name of the message system supported by SQL Remote.

publisher_address    The address of the remote database publisher.

remarks    Remarks about the remote type. This value is stored in the ISYSREMARK system table.

Constraints on underlying system table

PRIMARY KEY (type_id)

FOREIGN KEY (object_id) references SYS.ISYSOBJECT (object_id) MATCH UNIQUE FULL

UNIQUE (type_name)