|
Sybernet / Supplied Procedures Reference
Release 3.00 Oct 14, 2002 |
|
This proceudre creates a user and grants create session to them.
Procedure SP_ADDUSER
(
USERNAME VARCHAR2
, PASSWORD VARCHAR2
, TABLESPACE VARCHAR2
) ;
| Parameter | Description |
|---|---|
username |
The username to create. |
password |
The password to assign. |
tablespace |
The default tablespace. |
The following example illustrates how to add a user to your database:
sp_adduser('Hello','World');