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

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759445217, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/SQL/statement/nouns/user/index(79): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78