Application Express User's Guide > Oracle Application Express ... > HTMLDB_UTIL > SET_USERNAME Procedure
SET_USERNAME Procedure |
Previous |
Next |
This procedure updates a user account with a new USER_NAME
value. To execute this procedure, the current user must have administrative privileges in the workspace.
Syntax
HTMLDB_UTIL.USERNAME( p_userid IN NUMBER, p_username IN VARCHAR2);
Parameters
Table: SET_USERNAME Parameters describes the parameters available in the SET_USERNAME
procedure.
SET_USERNAME Parameters
Parameter | Description |
---|---|
|
The numeric ID of the user account |
|
|
Example
BEGIN HTMLDB_UTIL.SET_USERNAME( p_userid => '888883232', P_username => 'USER-XRAY'); END;