oracle创建帐号及赋予权限

发布日期:2014-03-08 21:57:40
1 创建用户 create user userName identified by password; 创建用户 userName,密码为 password 
2 给用户授权 grant dba to userName; --授予DBA权限 grant unlimited tablespace to userName;--授予不限制的表空间 grant select any table to userName; --授予查询任何表 grant select any dictionary to userName;--授予 查询 任何字典