Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: to find execution time..

Re: to find execution time..

From: <Kenneth>
Date: Tue, 29 Mar 2005 18:44:01 GMT
Message-ID: <4249a13c.7281218@news.inet.tele.dk>


On 28 Mar 2005 04:47:22 -0800, "sam" <sameer.ocp_at_gmail.com> wrote:

>Hi
>
>U can do that after connecting as a user and write
>set timing on

That's fine, but who says the OP is using sql*plus ?

Instead, as simple as :

select systimestamp as Query_start from dual; -- statement to measure goes here
select systimestamp as Query_end from dual;

and substract Query_start from Query_end.

Received on Tue Mar 29 2005 - 12:44:01 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US