sqlplus中: CREATE USER user IDENTIFIED {BY password | EXTERNALLY | GLOBALLY AS 'CN=user'}
   [ DEFAULT TABLESPACE tablespace
   | TEMPORARY TABLESPACE tablespace
   | QUOTA { integer [K | M] | UNLIMITED } ON tablespace
     [ QUOTA { integer [K | M] | UNLIMITED } ON tablespace ] ...
   | PROFILE profile
   | PASSWORD EXPIRE
   | ACCOUNT { LOCK | UNLOCK } ... ]for example:
  create user username identified by password default tablespace spacename1 temporary tablespace spacename2;