|
Sybernet / Supplied Functions Reference
Release 3.00 Oct 14, 2002 |
|
This function returns the user_name corresponding to a given user_id.
FUNCTION USER_NAME
(
USERID NUMBER
)
RETURN VARCHAR2;
| Parameter | Description |
|---|---|
userid |
The user_id to be evaluated or unspecified to return your user_name. |
A user_name or NULL if userid is invalid.
The following example illustrates how to retrieve your username:
select http.user_name() from dual --------------------------------- HTTP