Oracle快速插入100W数据,oracle插入100w
创建表
create table TX_TEST ( ID NUMBER not null, NAME VARCHAR2(200), URL VARCHAR2(300), POSITION VARCHAR2(200), CREATETIME DATE )
编写脚本
declare
-- Local variables here
count integer;
begin
-- Test statements here
dbms_output.put_line('start:'||sysdate);
for count in 1..1000000 loop
insert into tx_test
values (count,'aa'||count,'http://www.baidu.com?id='||count,'Chinese-'||count,sysdate);
commit;
end loop;
dbms_output.put_line('end:'||sysdate);
end;
本站文章为和通数据库网友分享或者投稿,欢迎任何形式的转载,但请务必注明出处.
同时文章内容如有侵犯了您的权益,请联系QQ:970679559,我们会在尽快处理。