DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: when Query is done ??

  1. #1
    Join Date
    Nov 2000
    Posts
    198
    Hi,
    I am runing a query through out the night.. how
    can I know when the query is done.

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Could we get a little more explanation?

    If you want to know how long one specific query took in a sqlplus script, use:
    SQL> set timing on
    SQL> select count(*) CNT from myTable;
    CNT
    -----------
    12

    Elapsed: 00:00:00.1
    SQL>
    Jeff Hunter

  3. #3
    Join Date
    Nov 2000
    Posts
    198
    Hi,
    actually I am trying to create a table using couple of views.

    SQL> create table mytable as select * from myview.
    and I am trying to figure out how long did it take to create
    mytable.

    thanks,

Posting Permissions

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


Click Here to Expand Forum to Full Width