使用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功能的补充会在下一篇文章中详细说明
本文介绍如何为Oracle数据库用户分配备份和恢复等关键权限。通过授予特定权限,如exp_full_database和imp_full_database,可以实现数据库的完整备份和恢复操作。
743

被折叠的 条评论
为什么被折叠?



