Aws oracle - 如何赋予imp_full_database特权?

时间:2015-08-22 14:49:14

标签: amazon-web-services amazon-rds

在RDS-Oracle中,当我尝试导入完整数据库或仅导入模式时,出现以下错误

   //code runs at app startup
    string JQueryVer = "2.1.4";
    ScriptManager.ScriptResourceMapping.AddDefinition("jquery", new ScriptResourceDefinition
    {
      Path = "~/Scripts/jquery-" + JQueryVer + ".min.js",
      DebugPath = "~/Scripts/jquery-" + JQueryVer + ".js",
      CdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-" + JQueryVer + ".min.js",
      CdnDebugPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-" + JQueryVer + ".js",
      CdnSupportsSecureConnection = true,
      LoadSuccessExpression = "window.jQuery"
    });
  }

所以我登录后给了imp_full_database privilage,但是失败了

Import: Release 11.2.0.1.0 - Production on Sat Aug 22 07:40:53 2015

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Release 11.2.0.4.0 - 64bit Production
ORA-31631: privileges are required
ORA-39122: Unprivileged users may not perform REMAP_SCHEMA remappings.

如何提供该权限,以便我可以导入?

0 个答案:

没有答案