通过pl/sql创建Oracle新用户
-- Create the user create user DM identified by "" default tablespace USERS temporary tablespace TEMP profile DEFAULT password expire;-- Grant/Revoke role privileges grant connect to DM;grant dba to DM;grant resource to DM;-- Grant/Revoke system privileges grant create any view to DM;grant unlimited tablespace to DM;
?