美文网首页
Oracle安装

Oracle安装

作者: 大漠初易 | 来源:发表于2017-05-26 10:34 被阅读0次

    安装

    创建数据库用户

    执行数据库脚本

    执行DRM的建表脚本。

    要求:

    1、Oracle 11g及以上版本;

    2、实例名和用户名不限;

    3、创建TAB_CC和IDX_CC表空间;

    创建用户脚本参考如下:

    create  user DRMV80 identified by smart

    default tablespace TAB_CC

    temporary tablespace TEMP;

    --赋权限

    grant  connect to DRMR80;

    grant  imp_full_database to DRMR80;

    grant  resource to DRMR80;

    grant  unlimited tablespace to DRMR80;

    grant  create any procedure to DRMR80;

    grant  select any dictionary to DRMR80;

    grant  create any synonym to DRMR80;

    grant  select any sequence to DRMR80;

    相关文章

      网友评论

          本文标题:Oracle安装

          本文链接:https://www.haomeiwen.com/subject/hnbtfxtx.html