SEC$DB_CREATORS
Lists users and roles granted the CREATE DATABASE
privilege.
Column Name | Data Type | Description |
---|---|---|
|
|
Name of the user or role |
|
|
Type of user:
|
SEC$DB_CREATORS
Lists users and roles granted the CREATE DATABASE
privilege.
Column Name | Data Type | Description |
---|---|---|
|
|
Name of the user or role |
|
|
Type of user:
|
SEC$GLOBAL_AUTH_MAPPING
Lists users and roles granted the CREATE DATABASE
privilege.
Column Name | Data Type | Description |
---|---|---|
|
|
Name of the mapping |
|
|
Using definition:
|
|
|
Mapping applies for authentication information from this specific plugin |
|
|
Mapping applies for authentication information from this specific database |
|
|
The type of authentication object (defined by plugin) to map from, or |
|
|
The name of the authentication object to map from |
|
|
The type to map to
|
|
|
The name to map to |
|
|
Comment on the mapping |
SEC$USERS
Lists users in the current security database.
Column Name | Data Type | Description |
---|---|---|
|
|
Username |
|
|
First name |
|
|
Middle name |
|
|
Last name |
|
|
|
|
|
|
|
|
Description (comment) on the user |
|
|
Authentication plugin name that manages this user |
Important
|
Multiple users can exist with the same username, each managed by a different authentication plugin. |
SEC$USER_ATTRIBUTES
Additional attributes of users
Column Name | Data Type | Description |
---|---|---|
|
|
Username |
|
|
Attribute name |
|
|
Attribute value |
|
|
Authentication plugin name that manages this user |
SELECT
U.SEC$USER_NAME AS LOGIN,
A.SEC$KEY AS TAG,
A.SEC$VALUE AS "VALUE",
U.SEC$PLUGIN AS "PLUGIN"
FROM SEC$USERS U
LEFT JOIN SEC$USER_ATTRIBUTES A
ON U.SEC$USER_NAME = A.SEC$USER_NAME
AND U.SEC$PLUGIN = A.SEC$PLUGIN;
LOGIN TAG VALUE PLUGIN
======== ======= ======= ===================
SYSDBA <null> <null> Srp
ALEX B x Srp
ALEX C sample Srp
SYSDBA <null> <null> Legacy_UserManager