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 logon. As a security measure, only users with DBA authority can view the contents of this table.
integrated_login_id Is 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.