首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

经过pl/sql创建Oracle新用户

2012-07-26 
通过pl/sql创建Oracle新用户-- Create the user create user DMidentified by default tablespace USERS

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

?

热点排行