Oracle SA_SESSION Version 20c |
---|
General Information | ||||||||||||||||||||||||||||
Library Note | ||||||||||||||||||||||||||||
Purpose | Use this package to manages user name, levels, labels, and read and write permissions for the current session. Note: This page has been posted prior to the GA release of 20c. It will be completed once we have access to the release version. |
|||||||||||||||||||||||||||
AUTHID | DEFINER | |||||||||||||||||||||||||||
Dependencies |
|
|||||||||||||||||||||||||||
Documented | Yes: In Label Security Administration doc | |||||||||||||||||||||||||||
First Available | 10.1 | |||||||||||||||||||||||||||
Security Model | Owned by LBACSYS with no privileges granted. | |||||||||||||||||||||||||||
Source | {ORACLE_HOME}/rdbms/admin/prvtolsdd.plb | |||||||||||||||||||||||||||
Subprograms | ||||||||||||||||||||||||||||
COMP_READ | ||||||||||||||||||||||||||||
Returns a comma-delimited list of compartments that the user is authorized to read | sa_session.comp_read(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT * FROM all_sa_policies; |
||||||||||||||||||||||||||||
COMP_WRITE | ||||||||||||||||||||||||||||
Returns a comma-delimited list of compartments to which the user is authorized to write | sa_session.comp_write(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT * FROM all_sa_policies; |
||||||||||||||||||||||||||||
GROUP_READ | ||||||||||||||||||||||||||||
Returns a comma-delimited list of groups that the user is authorized to read | sa_session.group_read(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.group_read('DATA_ACCESS') |
||||||||||||||||||||||||||||
GROUP_WRITE | ||||||||||||||||||||||||||||
Returns a comma-delimited list of groups that the user is authorized to write | sa_session.group_write(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.group_write('DATA_ACCESS') |
||||||||||||||||||||||||||||
LABEL | ||||||||||||||||||||||||||||
Returns the label associated with the specified policy for the current session | sa_session.label(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.label('DATA_ACCESS') |
||||||||||||||||||||||||||||
MAX_LEVEL | ||||||||||||||||||||||||||||
Returns the session's maximum authorized level | sa_session.max_level(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.max_level('DATA_ACCESS') |
||||||||||||||||||||||||||||
MAX_READ_LABEL | ||||||||||||||||||||||||||||
Returns the label string that was used to initialize the session's maximum authorized read label composed of the maximum level, compartments and groups authorized for read access | sa_session.max_read_label(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.max_read_label('DATA_ACCESS') |
||||||||||||||||||||||||||||
MAX_WRITE_LABEL | ||||||||||||||||||||||||||||
Returns the label string that was used to initialize the session's maximum authorized write label composed of the maximum level, compartments and groups authorized for write access | sa_session.max_write_label(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.max_write_label('DATA_ACCESS') |
||||||||||||||||||||||||||||
MIN_LEVEL | ||||||||||||||||||||||||||||
Returns the session's minimum authorized level | sa_session.min_level(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.min_level('DATA_ACCESS') |
||||||||||||||||||||||||||||
PRIVS | ||||||||||||||||||||||||||||
Returns the current session's privileges as a comma-delimited list | sa_session.privs(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.privs('DATA_ACCESS') |
||||||||||||||||||||||||||||
READ_LABEL | ||||||||||||||||||||||||||||
Undocumented | sa_session.read_label(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.read_label('DATA_ACCESS') |
||||||||||||||||||||||||||||
RESTORE_DEFAULT_LABELS | ||||||||||||||||||||||||||||
Restores session and row labels to match the values stored in the data dictionary by SA_SESSION.SET_LABEL | sa_session.restore_default_labels(policy_name IN VARCHAR2); |
|||||||||||||||||||||||||||
exec sa_session.restore_default_labels(policy_name IN VARCHAR2); |
||||||||||||||||||||||||||||
ROW_LABEL | ||||||||||||||||||||||||||||
Returns the name of the row label that is associated with the policy for the current session | sa_session.row_label(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.row_label('DATA_ACCESS') |
||||||||||||||||||||||||||||
SAVE_DEFAULT_LABELS | ||||||||||||||||||||||||||||
Stores the current session label and row label as the session's initial session label and default row label. Permits changing defaults to reflect the current session label and row label. Saved labels are used as the initial default settings for future sessions. | sa_session.save_default_labels(policy_name IN VARCHAR2); |
|||||||||||||||||||||||||||
exec sa_session.save_default_labels(policy_name IN VARCHAR2); |
||||||||||||||||||||||||||||
SA_USER_NAME | ||||||||||||||||||||||||||||
Returns the name of the OLS user as set by SET_ACCESS_PROFILE or as established at login. | sa_session.sa_user_name(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.sa_user_name('DATA_ACCESS') |
||||||||||||||||||||||||||||
SET_ACCESS_PROFILE | ||||||||||||||||||||||||||||
Sets session OLS authorizations and privileges to those of the specified user. The session executing SET_ACCESS_PROFILE procedure must have the PROFILE_ACCESS privilege. |
sa_session.set_access_profile( |
|||||||||||||||||||||||||||
exec sa_session.set_access_profile('DATA_ACCESS’,sys_context('USERENV','EXTERNAL_NAME'); |
||||||||||||||||||||||||||||
SET_LABEL | ||||||||||||||||||||||||||||
Sets the label for the current session. Performs a function similar to SA_USER_ADMIN.SET_USER _LABELS | sa_session.set_label( |
|||||||||||||||||||||||||||
exec sa_session.set_label('DATA_ACCESS', 'C::IA::IS'); |
||||||||||||||||||||||||||||
SET_ROW_LABEL | ||||||||||||||||||||||||||||
Sets the row label for the current session. Performs a function similar to SA_USER_ADMIN.SET_USER _LABELS | sa_session.set_row_label( |
|||||||||||||||||||||||||||
exec sa_session.set_row_label('DATA_ACCESS', 'P::OP::AO'); |
||||||||||||||||||||||||||||
WRITE_LABEL | ||||||||||||||||||||||||||||
Sets the write label for the current session. Performs a function similar to SA_USER_ADMIN.SET_USER _LABELS | sa_session.write_label(policy_name IN VARCHAR2) RETURN VARCHAR2; |
|||||||||||||||||||||||||||
SELECT sa_session.write_label('DATA_ACCESS') |