SYSREMOTEOPTION system table

CREATE table SYS.SYSREMOTEOPTION (
	option_id		 UNSIGNED INT	 NOT NULL,
	user_id		 UNSIGNED INT	 NOT NULL,
	"setting		" VARCHAR( 255 )	 NOT NULL,
	PRIMARY KEY ( option_id, user_id ),
	FOREIGN KEY REFERENCES SYS.SYSREMOTEOPTIONTYPE
)

Each row describes the values of a SQL Remote message link parameter.

option_id Identification number for the message link parameter.

user_id User ID for which the parameter is set.

“setting” Value of the message link parameter.