用最简单的方法记录Oracle语句的执行时间

来源:pcdog 作者:佚名 2008-03-25 出处:pcdog.com

oracle  
        在实际的工作和学习中,许多人经常需要获取或记录Oracle语句的执行时间,其实简单的方法就能实现,具体代码如下:

OracleE语句的执行时间需要使用 SET TIMING ON,例如:

[oracle@jw ~]$ sqlplus "/as sysdba"
SQL*Plus: Release 9.2.0.4.0 - Production on 
星期二 8月 28 16:59:43 2007
Copyright (c) 1982, 2002, Oracle 
Corporation. All rights reserved.

连接到:

Oracle9i Enterprise Edition 
Release 9.2.0.4.0 - Production
With the Partitioning, Oracle Label Security, 
OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
SQL> set timing on;
SQL> select count(*) from tab;

COUNT(*)
----------
2447

已用时间: 00: 00: 00.12
SQL>

更多内容请看PCdog.com--数据库基本处理专题
上一篇:深入讲解Memory_target与自动内存管理
下一篇:用Oracle的功能特性提高应用的执行效率