Oracle安装

安装

创建数据库用户

执行数据库脚本

执行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安装)