读书人

经过pl/sql创建Oracle新用户

发布时间: 2012-07-26 12:01:08 作者: rapoo

通过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;

?

读书人网 >SQL Server

热点推荐