Identifier functions v17
Identifier functions that information about the instance and session.
SYS_GUID
The SYS_GUID
function generates and returns a globally unique identifier. The identifier takes the form of 16 bytes of RAW
data. The SYS_GUID
function is based on the uuid-ossp
module to generate universally unique identifiers. The signature is:
SYS_GUID()
Example
This example adds a column to the table EMP
, inserts a unique identifier, and returns a 16-byte RAW
value:
edb=# CREATE TABLE EMP(C1 RAW (16) DEFAULT SYS_GUID() PRIMARY KEY, C2 INT); CREATE TABLE edb=# INSERT INTO EMP(C2) VALUES (1); INSERT 0 1 edb=# SELECT * FROM EMP;
Output
c1 | c2 ------------------------------------+---- \xb944970d3a1b42a7a2119265c49cbb7f | 1 (1 row)
USERENV
The USERENV
function retrieves information about the current session. The signature is:
USERENV(<parameter>)
The parameter
specifies a value to return from the current session. The table shows the possible parameter
values.
Parameter | Description |
---|---|
ISDBA | Returns TRUE if the current user has DBA privileges, otherwise FALSE . |
LANGUAGE | The language, territory, and character set of the current session in the following format: language_territory.characterset |
LANG | The ISO abbreviation for the language name, a short name for the existing LANGUAGE parameter. |
SID | The current session identifier. |
TERMINAL | The current session's operating system terminal identifier. |
Examples
This example returns the ISDBA
parameter of the current session:
edb=# SELECT USERENV('ISDBA') FROM DUAL;
Output
userenv --------- TRUE (1 row)
This example returns the LANG
parameter of the current session: