Search notes:

Oracle SQL noun: USER

The Oracle SQL statements with the noun user are
CREATE USER rene IDENTIFIED BY         theSecretPassword …;
CREATE USER rene IDENTIFIED BY         theSecretPassword [HTTP] DIGEST [ENABLE|DISABLE] …;

CREATE USER rene IDENTIFIED EXTERNALLY …;
CREATE USER rene IDENTIFIED EXTERNALLY AS 'certificate_DN' …;
CREATE USER rene IDENTIFIED EXTERNALLY AS 'kerberos-principal-name' …;

CREATE USER rene IDENTIFIED GLOBALLY   …;
CREATE USER rene IDENTIFIED GLOBALLY   AS 'directory_DN'   …;

CREATE USER rene NO AUTHENTICATION     …;
…
[ DEFAULT COLLATION  … ]
[ DEFAULT TABLESPACE … ]
[ [LOCAL] TEMPORARY TABLESPACE … ]
[ QUOTA [ size-clause | UNLIMITED] ON tablespace ]
[ PROFILE … ]
[ PASSWORD EXPIRE ]
[ ACCOUNT [ LOCK | UNLOCK ] ]
[ ENABLE EDITIONS ]
[ CONTAINER = [ CURRENT | ALL ]

TODO

Using an X.509 name to identify an externally identified user

create user fred
   identified globally as 'CN=…, OU=sales, O=Acme, C=CH'
   …;

Externally identified user

create user joy
   identified externally
   …;

See also

After creating a user, the user will probably be granted system privileges.

Index