Results 1 to 3 of 3

Thread: How to calculate query response time?

  1. #1
    Join Date
    Nov 2005
    Posts
    2

    How to calculate query response time?

    Ok, it might be a newbie question as it seems simple enough.

    But I have an sql query and wish to know the response time for it. How can I acheive this? Is it possible to do this using sql worksheet only without a tool? I have seen some tools that I can't start like analyze and optimization manager. They seem to be able to do this but I hope I don't have to use them.

    Note: I am using oracle 9i, but I doubt that changes anything.

  2. #2
    Join Date
    Oct 2005
    Posts
    2,557
    There are several "times" involved, but I'm guessing you want the overall time.

    SQL> set timing on
    SQL> select count(line)
    2 from dba_source
    3 where owner in
    4 ('HR','OE','PM','SH','QS_ADM','QS','QS_WS','QS_ES' ,'QS_OS','QS_CBADM','QS_CB','QS_CS');

    COUNT(LINE)
    -----------
    646

    Elapsed: 00:00:01.00

  3. #3
    Join Date
    Nov 2005
    Posts
    2
    That's exactly what I needed,
    Thank you.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •