unieap 建库


create tablespace unieap datafile 'unieap.dbf' size 100M reuse autoextend on next 50M;
1.


2.
drop user unieap cascade;
create user unieap identified by unieap default tablespace unieap;
grant resource,connect,dba to unieap;
grant select any table,execute any procedure,create any procedure,create any snapshot,on commit refresh,create any table to unieap;

原文地址:https://www.cnblogs.com/Jeely/p/11481152.html