一个简单的Oracle存储过程测试数据插入效率

2014-11-24 19:00:25 · 作者: · 浏览: 26

一,测试准备


1 创建表数据空间


SQL> create tablespace cat_data nologging


extent management local autoallocate;


2,创建表索引空间


SQL> create tablespace cat_index nologging


datafile '/home/oracle/app/oracle/oradata/catdb/cat_index.dbf' size 4096M


extent management local autoallocate;


3,创建用户


SQL> create user cat identified by cat default tablespace cat_data account unlock;


SQL> grant connect, resource to cat;


SQL> grant select on v_$instance to cat;


SQL> grant select on v_$session to cat;


SQL> grant select any table to cat;


SQL> grant alter any sequence to cat;


SQL> grant create any trigger to cat;


SQL> grant create any directory to cat;


SQL> grant create any procedure to cat;


SQL> grant create any table to cat;


SQL> grant dba to cat;