个人实验的时候有时会用到一些大表,在此分享用dba_objects来创建测试大表的方法: 首先建立测试表 SYS@ORCLcreate table test nologging as select rownum id,a.* from dba_objects a where 1=2; Table created. 插入500万条数据: SYS@ORCLdeclare l_cnt n
个人实验的时候有时会用到一些大表,,在此分享用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,
PHPWEB网上商店系统免费版整合了会员、购物、招聘、留言、点评、网页、文章等功能模块,不但具有B2C电子商务网站的常用功能,还具有灵活的内容管理和强大的在线排版功能。摒弃了特殊商品购物流程,着重支持简单商品订购,并预设了测试数据,便于用户操作,适用于家电、家居用品、食品等没有特殊流程的网上商店,其优越的排版功能尤其适合建站服务商为客户DIY建设网上商店。系统具有以下功能特点:一、便捷易玩的可视化
1
object_id,data_object_id,
object_type,created,last_ddl_time,
timestamp,status,temporary,
generated,secondary
from sales
where rownum
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.
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号