IS_USERNAME_UNIQUE Function

Previous
Previous
Next
Next

This function returns a Boolean result based on whether the named user account is unique in the workspace.

Syntax

HTMLDB_UTIL.IS_USERNAME_UNIQUE(
   P_username IN VARCHAR2);
RETURN BOOLEAN;

Parameters

Table: IS_USERNAME_UNIQUE Parameters describes the parameters available in IS_USERNAME_UNIQUE function.

IS_USERNAME_UNIQUE Parameters

Parameter Description

p_username

Identifies the user name to be tested


Example

DECLARE VAL BOOLEAN;
BEGIN
  VAL := HTMLDB_UTIL.IS_USERNAME_UNIQUE(
             p_username=>'SCOTT');
END;