Oracle語句執行時間記錄的方法我們經常會用到,下面就教您一個記錄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
- 已用