|
Sybernet / Supplied Functions Reference
Release 3.00 Oct 14, 2002 |
|
This function determines if the name passed is a valid identifier in Oracle.
FUNCTION VALID_NAME
(
NAME VARCHAR2
)
RETURN NUMBER;
| Parameter | Description |
|---|---|
name |
The name to be evaluated. |
0 if the name is invalid; othersize, a non-zero result is returned.
The following example illustrates how to call valid_name:
select valid_name('group') from dual
----------------------
0