程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> Oracle創建用於測試的大表

Oracle創建用於測試的大表

編輯:關於Oracle數據庫

       個人實驗的時候有時會用到一些大表,在此分享用dba_objects來創建測試大表的方法:

      首先建立測試表

      SYS@ORCL>create table test nologging as select rownum id,a.* from dba_objects a where 1=2;

      Table created.

      插入500萬條數據:

      SYS@ORCL>declare

      l_cnt number;

      l_rows number:=&1;

      begin

      insert /*+ append */ into test select rownum,a.* from dba_objects a;

      l_cnt:=sql%rowcount;

      commit;

      while(l_cnt

      loop

      insert /*+ append */ into test 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 sales

      where rownum<=l_rows-l_cnt;

      l_cnt:=l_cnt+sql%rowcount;

      commit;

      end loop;

      end; 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

      22 /

      Enter value for 1: 5000000

      old 3: l_rows number:=&1;

      new 3: l_rows number:=5000000;

      PL/SQL procedure successfully completed.

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved