避免在 PL/SQL 中使用嵌套游标查询
2008-12-17 13:06:14 来源:WEB开发网考虑下面的 PL/SQL 代码,这段代码生成一个 XML 格式的矩阵样式的报表:
declare
l_count integer;
begin
dbms_output.put_line('<matrix>');
-- generate matrix of parts by country
for part in (select id,description from parts order by description) loop
dbms_output.put_line('<row>');
dbms_output.put_line('<cell>'||part.description||'</cell>');
for country in (select code from countries order by name) loop
select sum(cnt) into l_count from orders
where part_id = part.id and cc = country.code;
dbms_output.put_line('<cell>'||nvl(l_count,0)||'</cell>');
end loop;
dbms_output.put_line('</row>');
end loop;
dbms_output.put_line('</matrix>');
end;
如果在这个例子中 parts 和 countries 有很多行数据,那么性能就会趋于下降。这是因为,在 PL/SQL 中,每次遇到一个游标 FOR 循环,在重新查询并获得数据时,都会有一个切换到 SQL 的上下文切换。
以一些服务器端内存为代价,提高这种构造的速度是有可能做到的——如果动态构建 PL/SQL 数据表和矩阵单元格条目就可以提高速度。例如:
declare
type part_tbl_type is table of parts%rowtype index by binary_integer;
part_tbl part_tbl_type;
--
type country_tbl_type is table of countries%rowtype index by binary_integer;
country_tbl country_tbl_type;
--
type cell_rec is record
(
part_id orders.part_id%type,
cc orders.cc%type,
cnt orders.cnt%type
);
type cell_tbl_type is table of cell_rec index by binary_integer;
cell_tbl cell_tbl_type;
--
i pls_integer;
begin
-- build rows
for row in (select * from parts order by description) loop
part_tbl(part_tbl.count+1) := row;
end loop;
-- build columns
for col in (select * from countries order by name) loop
country_tbl(country_tbl.count+1) := col;
end loop;
-- build cells
for cell in (select part_id,cc,sum(cnt) from orders group by part_id,cc) loop
cell_tbl(cell_tbl.count+1) := cell;
end loop;
dbms_output.put_line('<matrix>');
-- generate matrix of parts by country
i := cell_tbl.first;
for row in part_tbl.first .. part_tbl.last loop
dbms_output.put_line('<row>');
dbms_output.put_line('<cell>'||part_tbl(row).description||'</cell>');
for col in country_tbl.first .. country_tbl.last loop
if cell_tbl(i).part_id = part_tbl(row).id
and cell_tbl(i).cc = country_tbl(col).code
then
dbms_output.put_line('<cell>'||cell_tbl(i).cnt||'</cell>');
i := i + 1;
else
dbms_output.put_line('<cell>0</cell>');
end if;
end loop;
dbms_output.put_line('</row>');
end loop;
dbms_output.put_line('</matrix>');
end;
- ››SQL Server 2008 R2 下如何清理数据库日志文件
- ››sqlite 存取中文的解决方法
- ››SQL2005、2008、2000 清空删除日志
- ››SQL Server 2005和SQL Server 2000数据的相互导入...
- ››sql server 2008 在安装了活动目录以后无法启动服...
- ››sqlserver 每30分自动生成一次
- ››sqlite 数据库 对 BOOL型 数据的插入处理正确用法...
- ››sql server自动生成批量执行SQL脚本的批处理
- ››sql server 2008亿万数据性能优化
- ››SQL Server 2008清空数据库日志方法
- ››sqlserver安装和简单的使用
- ››SQL Sever 2008 R2 数据库管理
更多精彩
赞助商链接