Oracle產生千萬測試資料

來源:互聯網
上載者:User

標籤:

oracle 產生千萬測試資料

做資料庫開發或管理的人經常要建立大量的測試資料,動不動就需要上萬條,如果一條一條的錄入,那會浪費大量的時間,本文介紹了Oracle中如何通過一條SQL快速產生大量的測試資料的方法。
產生測試資料的SQL如下:

SQL> select rownum as id, 

 2                                 to_char(sysdate + rownum / 24 / 3600, ‘yyyy-mm-dd hh24:mi:ss‘) as inc_datetime, 

 3                                 trunc(dbms_random.value(0, 100)) as random_id 

 4                                 dbms_random.string(‘x‘, 20) random_string  5            from dual  6          connect by level <= 10;

   ID INC_DATETIME      RANDOM_ID RANDOM_STRING---------- -----------------   ------------------------------------------------------------------------    1 2009-12-08 19:43:14         76 GWMU280MIVBKKOCZV620             2 2009-12-08 19:43:15         34 GNV88O6TDHD3TWC5GWI5             3 2009-12-08 19:43:16         77 LI6H4O5IAHQIMO4B0WMH             4 2009-12-08 19:43:17         99 LP7XP49I0YOJIYSJDQZO             5 2009-12-08 19:43:18         55 V3284X9RXW4UZI8BQMO3             6 2009-12-08 19:43:19         16 T0OA52UAOGHL1TT46H25             7 2009-12-08 19:43:20         61 UY6RUOF7HWTO86942FLP             8 2009-12-08 19:43:21         25 JYXO4OPEW8J1CKVCPDJR             9 2009-12-08 19:43:22         10 DONU6W9QVQM3KJ2UG8LO            10 2009-12-08 19:43:23         76 J8DJLVNOUIZDXE4UXUJG        10 rows selected

上面SQL是利用了Oracle資料庫文法的幾個實用小技巧實現的:
1、利用Oracle特有的“connect by”樹形串連文法產生測試記錄,“level <= 10”表示要產生10記錄;
2、利用rownum虛擬列產生遞增的整數資料;
3、利用sysdate函數加一些簡單運算來產生日期資料,本例中是每條記錄的時間加1秒;
4、利用dbms_random.value函數產生隨機的數值型資料,本例中是產生0到100之間的隨機整數;
5、利用dbms_random.string函數產生隨機的字元型資料,本例中是產生長度為20的隨機字串,字串中可以包括字元或數字。
ok,那要產生10萬條測試記錄表可以用如下SQL:

create table myTestTable as select rownum as id,               to_char(sysdate + rownum/24/3600, ‘yyyy-mm-dd hh24:mi:ss‘) as inc_datetime,               trunc(dbms_random.value(0, 100)) as random_id,               dbms_random.string(‘x‘, 20) random_string                         from dual               connect by level <= 100000;

 

// 隨機產生測試資料update es_sms_customer set        sex=floor(dbms_random.value(0,3))        ,name=dbms_random.string(‘A‘,6)       ,id_card=111311198305100988 + floor(dbms_random.value(0,811311198305100988))       ,house_phone=‘0‘||floor(dbms_random.value(1000000001,80000000000))       ,mobile=10000000000 + floor(dbms_random.value(3111111111,3999999999))       ,fax=‘0‘||floor(dbms_random.value(1000000001,80000000000))       ,post_code=‘‘||floor(dbms_random.value(100001,999999))       ,email=dbms_random.string(‘L‘,6)||‘@‘||dbms_random.string(‘L‘,4)||‘.com‘       ,qq=floor(dbms_random.value(10000001,999999999))       ,addr=dbms_random.string(‘L‘,16)       ,birth_day=birth_day+365*floor(dbms_random.value(1,50))       ,occupation=floor(dbms_random.value(0,5))       ,fixed_assets=floor(dbms_random.value(0,8))       ,car_owner=floor(dbms_random.value(0,3))       ,car_buy_time=birth_day+365*floor(dbms_random.value(1,50))       ,car_brand=dbms_random.string(‘L‘,5)       ,bui_name=dbms_random.string(‘L‘,5)       ,car_price=floor(dbms_random.value(5,500))       ,bui_area_count=floor(dbms_random.value(80,300))       ,bui_addr=dbms_random.string(‘L‘,10)       ,bui_post=‘‘||floor(dbms_random.value(100001,999999))       ,bui_manager=dbms_random.string(‘L‘,10)       ,bui_developer=dbms_random.string(‘L‘,10)              where rownum<1000;

Oracle產生千萬測試資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.