- 浏览: 90290 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (81)
- 读书笔记 (14)
- NetBeans学习 (1)
- JavaBeans and Bean Events (3)
- 《Pro Oracle SQL》Chapter 2 SQL Execution (13)
- 《Pro Oracle SQL》Chapter 3 Access and Join Methods (16)
- Pro Oracle SQL Chapter 5 (0)
- Pro Oracle SQL Chapter 6 (0)
- Pro Oracle SQL Chapter 7 (9)
- Pro Oracle SQL Chapter 8 (9)
- 《Pro Oracle SQL》Chapter 9 The Model Clause (11)
- 《Pro Oracle SQL》Chapter 10 Subquery Factoring (7)
最新评论
-
mojunbin:
这个不能不顶。
《Pro Oracle SQL》 Chapter2--2.1 Oracle Architecture Basics -
Branding:
谢谢,获益匪浅
《Pro Oracle SQL》--chapter 5--5.6 Building Logical Expressions -
Branding:
《Pro Oracle SQL》--Chapter 5--5.4 Questions about the Question -
Branding:
谢谢
《Pro Oracle SQL》 翻译序 -- 读书心得 -
jiaoshiguoke:
继续 加油
《Pro Oracle SQL》--Chapter 6--6.1 Explain Plans--之三
《Pro Oracle SQL》Chapter 2--2.4 Identical Statements
2.4 Identical Statements 同样的语句 (page56)
In order for Oracle to determine if a statement has been previously executed, it will check the library
cache for the identical statement. You can see what statements are currently stored in the library cache
by querying the v$sql view.
This view lists statistics on the shared SQL area and contains one row for
each child of the original SQL text entered. Listing 2-1 shows three different executions of a query
against the employees table followed by a query against v$sql showing information about the three
queries that have been stored in the library cache.
为了让Oracle判断一条语句是否之前执行过,它将检查库缓存中是否有同样的语句。你可以通过查询视图v$sql知道当前在库缓存中存有什么语句。
该视图列出共享SQL区域的统计信息且对于每个原始(输入)的SQL文本各占一行。列表2-1显示同一对employees表的查询的三个不同的执行,接着是对v$sql的查询,信息显示三条查询都被存入了库缓存中。
Listing 2-1. Queries Against Employees and v$sql Contents
SQL> select * from employees where department_id = 60;
EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL ...
--------------- -------------------- ------------------------- ----------- ...
103 Alexander Hunold AHUNOLD ...
104 Bruce Ernst BERNST ...
105 David Austin DAUSTIN ...
106 Valli Pataballa VPATABAL ...
107 Diana Lorentz DLORENTZ ...
SQL> SELECT * FROM EMPLOYEES WHERE DEPARTMENT_ID = 60;
EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL ...
--------------- -------------------- ------------------------- ----------- ...
103 Alexander Hunold AHUNOLD ...
104 Bruce Ernst BERNST ...
105 David Austin DAUSTIN ...
106 Valli Pataballa VPATABAL ...
107 Diana Lorentz DLORENTZ ...
SQL> select /* a_comment */ * from employees where department_id = 60;
EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL ...
--------------- -------------------- --------------------- ----------- ...
103 Alexander Hunold AHUNOLD ...
104 Bruce Ernst BERNST ...
105 David Austin DAUSTIN ...
106 Valli Pataballa VPATABAL ...
107 Diana Lorentz DLORENTZ ...
SQL> select sql_text, sql_id, child_number, hash_value, address, executions
2 from v$sql where upper(sql_text) like '%EMPLOYEES%';
SQL_TEXT SQL_ID CHILD_NUMBER HASH_VALUE ADDRESS EXECUTIONS
--------------------------- ------------- ------------
---------- -------- ----------
select *
from employees 0svc967bxf4yu 0 3621196762
67197BC4 1
where department_id = 60
SELECT * FROM EMPLOYEES cq7t1xq95bpm8 0 2455098984 671A3034 1
WHERE DEPARTMENT_ID = 60
select
/* a_comment */ * 2dkt13j0cyjzq
0 1087326198
671A2E18 1
from employees
where department_id = 60
Although all three statements return the exact same result, Oracle considers them to be different.
This is because when a statement is executed, Oracle first converts the string to a hash value.
That hash value is used as the key for that statement when it is stored in the library cache. As other statements are executed, their hash values are compared to the existing hash values to find a match.
尽管所有的三条语句返回完全一样的结果,Oracle认为他们是不同的。这是因为当一条语句执行时,Oracle首先转换字符串成哈希值。哈希值作为那条存入库缓存语句的键。
当其他语句执行时,他们的哈希值用来比较存在的哈希值,来查找匹配。
So, why would these three statements produce different hash values, even though they return the
same result? It’s because the statements are not exactly identical. Lower case text is different from
upper case text. Adding a comment into the statement makes it different from the statements that don’t
have a comment. Any differences will cause a different hash value for the statement and cause Oracle to
hard parse the statement.
如此,为什么这三条语句产生了不同的哈希值,即使他们返回相同的结果呢?因为这些语句实际上不是完全的相同。小写文本是不同于大写文本的。在语句中加了注释也有别于语句中没有注释的。任何区别都将产生一个不同的语句哈希值且让Oracle去硬解析这条语句。
This is why using bind variables instead literals in your SQL statements is so important. When you
use a bind variable, Oracle will be able to share the statement even as you change the values of the bind
variables
, as shown in Listing 2-2.
这就是为什么在你的SQL语句中使用绑定变量替代文字是如此重要了。当你使用绑定变量,Oracle将能共享语句即使你改变了绑定变量的值
,如列表2-2所示。
Listing 2-2. The Effect of Using Bind Variables on Parsing 使用绑定变量在解析上的效果
SQL> variable v_dept number
SQL> exec :v_dept := 10
SQL> select * from employees where department_id = :v_dept;
EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL ...
--------------- -------------------- ------------------------- ----------- ...
200 Jennifer Whalen JWHALEN ...
1 row selected.
SQL> exec :v_dept := 20
PL/SQL procedure successfully completed.
SQL> select * from employees where department_id = :v_dept;
EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL ...
--------------- -------------------- ------------------------- ----------- ...
201 Michael Hartstein MHARTSTE ...
202 Pat Fay PFAY ...
2 rows selected.
SQL> exec :v_dept := 30
PL/SQL procedure successfully completed.
SQL> select * from employees where department_id = :v_dept;
EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL ...
--------------- -------------------- ------------------------- ----------- ...
114 Den Raphaely DRAPHEAL ...
115 Alexander Khoo AKHOO ...
116 Shelli Baida SBAIDA ...
117 Sigal Tobias STOBIAS ...
118 Guy Himuro GHIMURO ...
119 Karen Colmenares KCOLMENA ...
6 rows selected.
SQL> select sql_text, sql_id, child_number, hash_value, address, executions
2 from v$sql where sql_text like '%v_dept';
SQL_TEXT SQL_ID CHILD_NUMBER HASH_VALUE ADDRESS EXECUTIONS
------------------------------- ------------- ------------
----------- -------- ----------
select * from employees 72k66s55jqk1j 0 1260079153 6726254C 3
where department_id = :v_dept
1 row selected.
Notice how there is only one statement stored in the library cache with three executions. If I had
executed the queries using the literal values (10, 20, 30), there would have been three different
statements. Always keep this in mind and try to write SQL that takes advantage of bind variables and
uses exactly the same SQL. The less hard parsing that is required will mean your applications will
perform better and be more scalable.
注意三次运行如何却只有一条语句存于库缓存中。如果我使用文本值(10,20,30)执行查询,将生成3条不同的语句。牢记写SQL时尽量使用绑定变量且使用完全相同的SQL。所需的硬解析越少将意味着你的应用将性能更好且越可扩展。
One last mechanism that is important to understand is something called a latch. A latch is a type of
lock that Oracle must acquire in order to read information stored in the library cache as well as other
memory structures. Latches protect the library cache from becoming corrupted by concurrent
modifications by two sessions or by one session trying to read information that is being modified by
another one. Prior to reading any information from the library cache, Oracle will acquire a latch that will
then cause all other sessions to have to wait until that latch is released before they can acquire the latch
and do the work they need to complete.
最后还有被称之为“闩”的机制需要重点理解。闩是一种锁,Oracle必须获取它才能读取库缓存以及其他内存结构中的信息。闩防止库缓存被两个进程并发修改占据或者一个进程在修改某信息的时候另一进程试图读取它。在从库缓存中读取任何信息之前,Oracle将获取闩,从而使得其他进程在他们得到闩之前必须等待闩释放,然后完成他们的工作。
Latches, unlike typical locks, are not queued.
In other words, if Oracle attempts to acquire a latch
on the library cache in order to check to see if the statement you are executing already exists, it will
check to see if the latch is available. If the latch is available, it will acquire the latch, do the work it needs to, then release the latch. However, if the latch is already in use, Oracle will do something called
spinning. Think of spinning like a kid in the backseat of a car that asks “Are we there yet?” over and over
and over. Oracle will basically iterate in a loop and continue to check to see if the latch is available.
During this time, Oracle is actively using CPU to do these checks, but your query is actually “on hold”
and not really doing anything until the latch can be acquired.
闩,不像典型的锁,是没有队列的。
换句话说,如果Oracle企图获取库缓存中的一个闩,为了检查看是否你所执行的语句是否已经存在,它将先检查闩是否有效。如果闩有效,它将获取闩,做它要做的工作,然后释放它。然而如果闩已经在使用中,Oracle将做被称之为“自旋”的动作。想象自旋就像一个坐在一辆汽车后座上的小孩不停的一遍又一遍的问“我们到了么?”。Oracle根本上就是在一个循环中不断的迭代检查看闩是否有效了。这期间,Oracle积极的使用CPU做这些检查,但是你的查询实际上hold住了(冻结了),真正没有做任何事情,直到闩获取了。
If the latch is not acquired after spinning for a while (Oracle will spin up to the number of times
indicated by the _spin_count hidden parameter, which is set to 2000 by default), then the request will be
halted temporarily and your session will have to get in line behind other sessions that need to use the
CPU. It must wait its turn to use the CPU again in order to check to see if the latch is available. This
iterative process will continue until the latch can be acquired. You don’t just get in line and wait on the
latch to become available, so it’s entirely possible that another session can acquire the latch while your
session is waiting in line to get back on the CPU to check the latch again. As you can imagine, this could
be quite time-consuming if many sessions all need to acquire the latch concurrently.
如果闩在自旋一会后还没有获取(Oracle将旋转到一次数上限,由隐式参数_spin_count设定,默认值2000),请求将被临时的挂起且你的进程将被排到其他需要使用CPU的进程的后面。必须等到轮到他再次使用CPU时检查看是否闩是有效的了。这个迭代过程将继续下去直到闩被获取。你并不是仅按次序等待闩变得有效,因为完全有可能其它的进程先获得闩而当你的进程在排队等待重新获得CPU来检查闩(是否有效)时。你可以想象,如果很多进程并发的需要获得闩这将是非常耗时的。
The main thing to remember is that latches are serialization devices. The more frequently Oracle
needs to acquire a latch, the more likely it is that contention will occur, and the longer you’ll have to
wait. The effects on performance and scalability can be dramatic. So, writing your code in such a way as to require fewer latches (i.e. less hard parsing) is critical.
需要记住的要点是闩是序列化装置。Oracle越是频繁的获取一个闩,越可能发生竞争,你就将必须等的越久。对性能和扩展性的效果的影响是巨大的。如此以来,你写代码方式须获取较少的闩(例如:较少的硬解析)是至关重要的。
发表评论
-
《Pro Oracle SQL》Chapter2--2.13 SQL Execution – Putting It All Together
2012-02-10 05:26 1158SQL Execution – Putting It All ... -
《Pro Oracle SQL》CHAPTER2--2.12Executing the Plan and Fetching Rows
2012-02-09 09:41 1180Executing the Plan and Fetching ... -
《Pro Oracle SQL》CHAPTER2--2.11 Determining the Execution Plan
2012-02-04 20:09 1059Determining the Execution Plan ... -
《Pro Oracle SQL》CHAPTER2--2.10 Query Rewrite with Materialized Views
2012-01-27 13:27 1006Query Rewrite with Materialized ... -
《Pro Oracle SQL》CHAPTER2--2.9 Predicate Pushing
2012-01-25 20:51 1334Predicate Pushing 谓词推进 ... -
《Pro Oracle SQL》CHAPTER2--2.8 Subquery Unnesting
2012-01-23 20:51 1462Subquery Unnesting 子查询 ... -
《Pro Oracle SQL》CHAPTER2--2.7 View Merging
2012-01-22 06:36 1248View Merging 视图合并 (Page 6 ... -
《Pro Oracle SQL》CHAPTER2--2.6Query Transformation
2012-01-18 15:17 755Query Transformation 查询变换 ... -
《Pro Oracle SQL》Charpter2 --2.5 SGA – The Buffer Cache
2012-01-15 16:10 1063SGA – The Buffer Cache SGA-缓 ... -
《Pro Oracle SQL》CHAPTER2--2.3 The Library Cache
2012-01-10 22:00 798The Library Cache 库缓存 ... -
《Pro Oracle SQL》Chapter2-2.2 SGA – The Shared Pool
2012-01-08 16:16 9222.2 SGA – The Shared Pool ... -
《Pro Oracle SQL》 Chapter2--2.1 Oracle Architecture Basics
2012-01-03 11:13 1292Chapter 2 SQL Execution ...
相关推荐
The USB 3.0 Micro-AB receptacle is identical to the USB 3.0 Micro-B receptacle, except for keying difference. It accepts either a USB 3.0 Micro-A plug or a USB 3.0 Micro-B plug. The USB 3.0 Micro-AB ...
Pro C# with .NET 3.0, Special Edition is logically divided into six distinct parts, each of which contains some number of chapters that somehow “belong together.” If you’ve read the third ...
根据提供的文档信息,“RACGuides_Rac10gR2OnLinux.pdf”这份文档主要介绍了如何在Linux环境下安装和配置Oracle Real Application Clusters (RAC) 10g Release 2。下面是针对该文档标题、描述以及部分章节内容所涉及...
Proliferative responses to selected peptides of IA-2 in identical twins discordant for Type 1 diabetes RESEARCH ARTICLE Proliferative responses to selected peptides of IA-2 in identical twins ...
64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle11g 或 Oracle12c 客户端。 安装中文包时请注意安装路径是否为PLSQL程序的路径。 Enhancements Performance and stability improvements...
Pro C# with .NET 3.0, Special Edition is logically divided into six distinct parts, each of which contains some number of chapters that somehow “belong together.” If you’ve read the third ...
### BMC Patrol for Oracle 的配置详解 #### 一、概述 BMC Patrol for Oracle 是一款用于监控和管理 Oracle 数据库性能的软件解决方案。它能够帮助管理员实时监控数据库的运行状态,并在出现问题时及时通知相关...
PL/SQL Developer 11.0 - New Features Below you can find a brief description of the most important new features in PL/SQL Developer 11.0. New features SQL Window enhancements The result set toolbar ...
教你如何破解.采用算号器来链接网卡信息.Installation of cracked Dassault Systemes License Server (by SSQ) 1. GENERAL INFORMATION Cracked by SSQ Dassault Systemes License Server (subsequently the...2. DSLS-
2.4 Conclusion Approximating Covering and Packing Problems: Set Cover, Vertex Cover, Independent Set, and Related Problems Dorit S. Hachbaum 3.1 Introduction 3.1.1 Definitions, formulations and ...
从给定的文件信息中,我们可以提炼出一系列与SQL语句相关的知识点,这些知识点对于初学者来说非常实用,能够帮助他们更好地理解和应用SQL查询、管理数据库等操作。下面,我们将详细解析这些知识点: ### 1. 按照...
Chapter 8: “Indexes”, Inside SQL Server 2000 by Kalen Delaney Chapter 11: “Batches, Stored Procedures and Functions”, Inside SQL Server 2000 by Kalen Delaney Finding Rows without Indexes ...
DESIGN Butterworth, Chebyshev, Elliptic (Caur), Bessel, Legendre and...Crystal Ladder band-pass filters using identical crystals. Ideal for Amateur construction from surplus or microprocessor crystals.
The color scheme is identical to Visual Studio 2010 Beta 2. Added a new Smart Docking style (BCGP_SDT_VS2010). You can run BCGPVisualStudioGUIDemo example to examine this look. Added content ...
本规范定义了该笼与SFF-8685中已实现的QSFP +连接器和QSFP +模块... This individual cage-only specification is mechanically identical to the cage design described within the original 10Gb/s QSFP+ SFF-8436.
Proliferative responses to selected peptides of IA-2 in identical twins discordant for Type 1 diabetes RESEARCH ARTICLE Proliferative responses to selected peptides of IA-2 in identical twins ...
BAV70 Dual Surface Mount Switching Diode,Electrically identical to standard JEDEC 1N4148 CAP Capacitor CAP Polar Capacitor, Polar, TANT or AL CAP2 Capacitor CON10 10 Pin CON4 Connector CRYSTAL Crystal...
Chapter 2. Compiling A Program Chapter 3. Variables Chapter 4. Control Statements And Loops Chapter 5. Operators Chapter 6. Classes Chapter 7. Data Structures Chapter 8. Multithreading And ...
- `-s` 或 `--report-identical-files`:即使没有差异也显示信息。 - `-y` 或 `--side-by-side`:并列显示文件的差异,便于对比。 - `-W` 或 `--width`:指定并列显示时的列宽。 - `-x` 和 `-X`:排除特定文件或目录...