安裝
創建數據庫用戶
執行數據庫腳本
執行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;