科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道解析:如何获取或记录Oracle语句执行时间

解析:如何获取或记录Oracle语句执行时间

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

很多情况下我们需要获取或记录Oracle语句执行时间,其实简单的方法就能实现,具体代码如下:Release 9.2.0.4.0 - ProductionWith the Partitioning, Oracle Label Security,on;

作者:xiaolongnv 来源:赛迪网 2007年9月20日

关键字: ORACLE 语句 SQL production

  • 评论
  • 分享微博
  • 分享邮件

很多情况下我们需要获取或记录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>

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章