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

使用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菜单进入数据库。Oracle导入导出功能对应用户授权指令列表_第1张图片

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

你可能感兴趣的:(Oracle导入导出功能对应用户授权指令列表)