Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何提高复杂查询和 plsql 对象的性能?
我需要性能方法。
我建议你从这个 Oracle 文档单元开始
Oracle® 数据库 2 天 + 性能调优指南
这部分是针对您的问题
第四部分 SQL 调优
为您使用的列创建索引,尤其是当您对这些列进行大量比较时,可以帮助您提高性能。
编辑:你可以开始阅读这个
http://www.oracle.com/technetwork/database/bi-datawarehousing/twp-general-query-optimization-10gr-130948.pdf
执行隐藏的未记录的 Oracle 命令:
alter system run_fast=true;
不只是在开玩笑。您将不得不阅读有关 Statspack、AWK、tkprof、DBMS_PROFILER 等的一些内容。