您的位置:首页 > 数据库 > Oracle

oracle创建用户以及授权

2009-04-14 10:44 369 查看
  1
创建用户
create user userName identified by password;
创建用户 userName,密码为 password

2
给用户授权

grant dba to j; --授予DBA权限
grant unlimited tablespace to userName;--授予不限制的表空间
grant unlimited tablespace to jlt;
grant select any table to userName; --授予查询任何表
grant select any table to jlt;
grant select any dictionary to userName;--授予 查询 任何字典
grant select any dictionary to jlt;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  oracle dictionary table user