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

Home
Oracle PL / SQL
1.Aggregate Functions
2.Analytical Functions
3.Char Functions
4.Constraints
5.Conversion Functions
6.Cursor
7.Data Type
8.Date Timezone
9.Hierarchical Query
10.Index
11.Insert Delete Update
12.Large Objects
13.Numeric Math Functions
14.Object Oriented Database
15.PL SQL
16.Regular Expressions
17.Report Column Page
18.Result Set
19.Select Query
20.Sequence
21.SQL Plus
22.Stored Procedure Function
23.Subquery
24.System Packages
25.System Tables Views
26.Table
27.Table Joins
28.Trigger
29.User Previliege
30.View
31.XML
Oracle PL / SQL » SQL Plus » Timing 




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(ownerfrom 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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.