|
Authentication levels
|
|
NO_AUTHENTICATION
|
constant number := 0;
|
|
WEAK_AUTHENTICATION
|
constant number := 5;
|
|
PUBLIC_AUTHENTICATION
|
constant number := 7;
|
|
STRONG_AUTHENTICATION
|
constant number := 10;
|
|
REQUIRED_AUTHENTICATION_LEVEL
|
constant number := PUBLIC_AUTHENTICATION;
|
|
System variable types
|
|
subtype system_var_name_type is varchar2(50);
|
|
subtype system_var_value_type is varchar2(2000);
|
|
type system_var_names_type is table of system_var_name_type index
by binary_integer;
|
|
System variable names
|
|
SYSTEM_VAR_USER_NAME
|
constant system_var_name_type := 'USER_NAME';
|
|
SYSTEM_VAR_USER_ID
|
constant system_var_name_type := 'USER_ID';
|
|
SYSTEM_VAR_COMPANY_NAME
|
constant system_var_name_type := 'COMPANY_NAME';
|
|
SYSTEM_VAR_SUBSCRIBER_ID
|
constant system_var_name_type := 'SUBSCRIBER_ID';
|
SYSTEM_VAR_NLS_LANG |
constant system_var_name_type := 'NLS_LANG';
|
SYSTEM_VAR_NLS_TERRITORY |
constant system_var_name_type := 'NLS_TERRITORY';
|