The SET_IDENTIFIER procedure is used to set the client ID in a session.
Syntax
DBMS_SESSION.SET_IDENTIFIER (
client_id VARCHAR(65535));
Parameters
client_id specifies the application identifier for the current database session (case-sensitive). The maximum length of this parameter is 64 bytes. If the input value exceeds 64 bytes, the excess bytes will be truncated.
Usage instructions
The SET_IDENTIFIER procedure sets the client ID of a session to a specified value.
The SET_IDENTIFIER procedure can be executed by PUBLIC.
Examples
obclient> BEGIN
DBMS_SESSION.SET_IDENTIFIER('1234');
END;
