现在的位置: 首页 > 综合 > 正文

Oracle导入导出功能对应用户授权指令列表

2013年10月02日 ⁄ 综合 ⁄ 共 511字 ⁄ 字号 评论关闭

使用SYSTEM用户居然没有办法操作数据库的备份和恢复(导入导出XMP数据文件功能)。接上一篇文章新建用户后,需要指定导入导出操作用户权限。下面是从网上查询整理得到的权限名称列表,请一行一行的在SQLPLUS里运行:

grant connect to 用户名;
grant exp_full_database to 用户名;
grant imp_full_database to 用户名;
grant resource to 用户名;
grant create procedure to 用户名;
grant create trigger to 用户名;
grant execute any procedure to 用户名;
grant grant any privilege to 用户名;
grant restricted session to 用户名;
grant select any table to 用户名;
grant unlimited tablespace to 用户名;
grant create any view to 用户名;
grant select any dictionary to 用户名;

再打开Oracle Enterprise Manager Console菜单进入数据库。

至于打开OMS功能的补充会在下一篇文章中详细说明

抱歉!评论已关闭.