zoukankan      html  css  js  c++  java
  • 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菜单进入数据库。

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

  • 相关阅读:
    ASP.NET Core 进程内(InProcess)托管
    ASP.NET Core 中的 Main 方法
    ASP.NET Core Web 项目文件
    5)
    4)
    单词
    html5单词
    3)
    2)
    1)
  • 原文地址:https://www.cnblogs.com/xqf222/p/3306806.html
Copyright © 2011-2022 走看看