足球游戏_中国足彩网¥体育资讯$

Oracle 测试常用表BIG_TABLE
来源:易贤网 阅读:1529 次 日期:2014-09-17 10:00:22
温馨提示:易贤网小编为您整理了“Oracle 测试常用表BIG_TABLE”,方便广大网友查阅!

创建测试用表,DBA经常用到,通常都是基于dba_objects来创建的比较多。本文根据Tom大师的big_table进行了整理,供大家参考。

一、基于Oracle 10g下的big_table

--==============================================

-- Create a test table for Oracle 10g

-- File : cr_big_tb_10g.sql

-- Author : Robinson

-- Blog :

--==============================================

prompt

prompt Create a big table from all_objects

prompt ======================================

CREATE TABLE big_table

AS

SELECT ROWNUM id, a.*

FROM all_objects a

WHERE 1=0;

prompt

prompt Modify table to nologgming mode

prompt ==========================

ALTER TABLE big_table NOLOGGING;

prompt

prompt Please input rows number to fill into big_table

prompt ============================================

DECLARE

l_cnt NUMBER;

l_rows NUMBER := &1;

BEGIN

INSERT /*+ append */

INTO big_table

SELECT rownum, a.*

FROM all_objects a;

l_cnt := SQL%ROWCOUNT;

COMMIT;

WHILE (l_cnt < l_rows)

LOOP

INSERT /*+ APPEND */

INTO big_table

SELECT rownum + l_cnt

,owner

,object_name

,subobject_name

,object_id

,data_object_id

,object_type

,created

,last_ddl_time

,TIMESTAMP

,status

,temporary

,generated

,secondary

FROM big_table

WHERE rownum <= l_rows - l_cnt;

l_cnt := l_cnt + SQL%ROWCOUNT;

COMMIT;

END LOOP;

END;

/

prompt

prompt Add primary key for big table

prompt =====================================

ALTER TABLE big_table ADD CONSTRAINT

big_table_pk PRIMARY KEY (id);

prompt

prompt Gather statistics for big_table

prompt =====================================

BEGIN

dbms_stats.gather_table_stats(ownname => USER,

tabname => 'BIG_TABLE',

method_opt => 'for all indexed columns',

cascade => TRUE);

END;

/

prompt

prompt check total rows for big_table

prompt ====================================

SELECT COUNT(*)

FROM big_table;

二、基于Oracle 11g下的big_table

--==============================================

-- Create a test table for Oracle 11g

-- File : cr_big_tb_11g.sql

-- Author : Robinson

-- Blog :

--==============================================

prompt

prompt Create a big table from all_objects

prompt ======================================

CREATE TABLE big_table

AS

SELECT ROWNUM id, a.*

FROM all_objects a

WHERE 1=0;

prompt

prompt Modify table to nologgming mode

prompt ==========================

ALTER TABLE big_table NOLOGGING;

prompt

prompt Please input rows number to fill into big_table

prompt ============================================

DECLARE

l_cnt NUMBER;

l_rows NUMBER := &1;

BEGIN

INSERT /*+ append */

INTO big_table

SELECT rownum, a.*

FROM all_objects a;

l_cnt := SQL%ROWCOUNT;

COMMIT;

WHILE (l_cnt < l_rows)

LOOP

INSERT /*+ APPEND */

INTO big_table

SELECT rownum + l_cnt

,owner

,object_name

,subobject_name

,object_id

,data_object_id

,object_type

,created

,last_ddl_time

,TIMESTAMP

,status

,temporary

,generated

,secondary

,namespace

,edition_name

FROM big_table

WHERE rownum <= l_rows - l_cnt;

l_cnt := l_cnt + SQL%ROWCOUNT;

COMMIT;

END LOOP;

END;

/

prompt

prompt Add primary key for big table

prompt =====================================

ALTER TABLE big_table ADD CONSTRAINT

big_table_pk PRIMARY KEY (id);

prompt

prompt Gather statistics for big_table

prompt =====================================

BEGIN

dbms_stats.gather_table_stats(ownname => USER,

tabname => 'BIG_TABLE',

method_opt => 'for all indexed columns',

cascade => TRUE);

END;

/

prompt

prompt check total rows for big_table

prompt ====================================

SELECT COUNT(*)

FROM big_table;

中国足彩网信息请查看IT技术专栏

中国足彩网信息请查看数据库
易贤网手机网站地址:Oracle 测试常用表BIG_TABLE
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 足球游戏_中国足彩网¥体育资讯$ 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标