SYSLOGIN system table

CREATE TABLE SYS.SYSLOGIN (
	integrated_login_id CHAR(128) NOT NULL,
	login_uid UNSIGNED INT NOT NULL,
	remarks LONG VARCHAR,
	PRIMARY KEY ( integrated_login_id )
)

This table contains all the user profile names that can be used to connect to the database using an integrated login. As a security measure, only users with DBA authority can view the contents of this table.

integrated_login_id A string value containing the user profile name used to map to a user ID in the database. When a user successfully logs on using this user profile name, and the database is enabled to accept integrated logons, the user can connect to the database without providing a user ID or password.

login_uid A foreign key to the system table SYSUSERPERM.

remarks A comment string.