Icon CREATE USER

Creates a new user.

Syntax
CREATE USER <Name>
PASSWORD <Password>
[DESCRIPTION <Description>]
[ATTRIBUTES <CustomAttributes>]

Usage
Use this statement to create a new user.

Warning The password is sent over a network as plain text when this statement is used with a non-encrypted connection to the ElevateDB server.

Examples
-- The following statement creates a new user "Joe Smith".

CREATE USER "JoeSmith"
PASSWORD 'Test1043'
DESCRIPTION 'Joe Smith'

Required Privileges
The current user must be granted the system-defined Administrators role in order to execute this statement. Please see the User Security topic for more information.

SQL 2003 Standard Deviations
This statement deviates from the SQL 2003 standard in the following ways:

DeviationDetails
ExtensionThis SQL statement is an ElevateDB extension
Image