- 1、本文档共15页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
优化ORACLE查询SQL语句(Optimize the ORACLE query SQL statement)
优化ORACLE查询SQL语句(Optimize the ORACLE query SQL statement)
(1) select the most efficient table name order (valid only in the rule based optimizer):
The Oracle parser in accordance with the order from right to left with a table in the FROM clause, the FROM clause written at the end of the table (based on table driving table) will be processed first, in the FROM clause contains multiple tables, you must select the number of records at the table as the base table. If you have more than 3 tables connected to the query, you need to choose the table table (intersection) as the base table, which refers to the table referenced by other tables
(2) the join order in the WHERE clause:
The ORACLE sequence analysis of WHERE clause bottom-up, according to this principle, the connection between the tables must be written before the other end of the WHERE conditions, these conditions can filter out the maximum number of records that must be written in the WHERE clause.
(3) avoid using * in the SELECT clause:
ORACLE in the parsing process, will be * are converted to all the names, this is done by querying the data dictionary, which means there will be more time consuming
(4) reduce the number of accesses to the database:
ORACLE does a lot of work internally: parsing SQL statements, estimating index utilization, binding variables, reading data blocks, and so on;
(5) to reset the ARRAYSIZE parameter in SQL*Plus, SQL*Forms, and PRo*C, you can increase the amount of retrieved data per database access, with a recommended value of 200
(6) use the DECODE function to reduce processing time:
Using the DECODE function, you can avoid repeated scans of the same record or repeated connections to the same table
(7) integrating simple, unrelated database access:
If you have a few simple database query statements, you can integrate them into a query (even if they dont matter)
(8) delete duplicate records:
The most efficient way to delete duplicate records (using the ROWID) example:
DELETE, FROM, EMP,
您可能关注的文档
- 中层管理者角色错位的四种表现(Four manifestations of middle manager's role dislocation).doc
- 中山嘉明电力有限公司(Nakayama Kaya Power Ltd).doc
- 中式婚礼习俗(Chinese wedding customs).doc
- 中学物理竞赛大纲(Syllabus for physics competition in middle school).doc
- 中文专业求职意向分析与建议(Analysis and suggestion on Job Hunting Intention of Chinese Majors).doc
- 中文字符串的相似度(Similarity of Chinese strings).doc
- 中文谐音迷宫蝴蝶 BLUEMOON(Chinese homophonic labyrinth butterfly BLUEMOON).doc
- 中日色彩意识探析(Analysis of Chinese and Japanese color consciousness).doc
- 中白令海峡鳕资源养护与管理公约(Convention on conservation and management of hake resources in the Central Bering Strait).doc
- 中小企业如何借势全国糖酒会招商(Small and medium-sized enterprises how to taking advantage of the national rum merchants).doc
最近下载
- 通信管道工程施工设计方案.pdf VIP
- 发货流程及常见问题排查.pptx VIP
- 驼峰进路控制原理 ZD7型电动转辙机控制电路.pptx
- 2025年新人教版七年级下册地理全册知识点复习专用.pdf VIP
- 2023年经济师《运输经济(民航)专业知识与实务》(中级试题).pdf VIP
- CJ-T161-2002:水泥内衬离心球墨铸铁管及管件.pdf
- 北京市朝阳外国语学校2024-2025学年七年级上学期分班考数学试卷.docx VIP
- 北京市建设工程预算消耗量定额(2021)市政工程.pdf VIP
- 2025年护理学副高考试题及答案.docx VIP
- DB46-T 12-2012 椰子生产技术规程.pdf VIP
文档评论(0)