Time lower text function : Timing « SQL Plus « Oracle PL / SQL






Time lower text function

   
SQL>
SQL> create table my_all_objects
  2  nologging
  3  as
  4  select * from all_objects
  5  union all
  6  select * from all_objects
  7  union all
  8  select * from all_objects
  9  /

Table created.

SQL>
SQL>
SQL> spool off
not spooling currently
SQL> set termout on
SQL>
SQL>
SQL> set timing on
SQL> select lower(owner) from my_all_objects group by owner;

LOWER(OWNER)
------------------------------
mdsys
tsmsys
flows_020100
public
outln
java2s
ctxsys
hr
flows_files
system
dbsnmp

LOWER(OWNER)
------------------------------
xdb
sys

13 rows selected.

Elapsed: 00:00:00.25
SQL> set timing off
SQL>
SQL> drop table my_all_objects;

Table dropped.

SQL>
SQL>
SQL>

   
    
  








Related examples in the same category

1.Time command
2.Time and autotrace a big table
3.Time query for a huge table
4.time a query with where clause
5.Loop timing
6.timing unconditional loop
7.Statistics query Timing on index
8.Performace difference between sql and pl/sql
9.TIMING table copying
10.Timing passing table collection parameter to a procedure