autotrace table with/without an index : autotrace « SQL Plus « Oracle PL / SQL

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
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » SQL Plus » autotrace 
autotrace table with/without an index
  
SQL> create table website
  2  hostname       varchar2(10),
  3    upTime             date,
  4    load           number,
  5    other_stats    char(65),
  6    constraint website_pk primary key(hostname,upTime)
  7  )
  8  /

Table created.

SQL>
SQL>
SQL> create table indexedwebsite
  2  hostname       varchar2(10),
  3    upTime             date,
  4    load           number,
  5    other_stats    char(65),
  6    constraint indexedwebsite_pk primary key(hostname,upTime)
  7  )
  8  organization index
  9  /

Table created.

SQL>
SQL>
SQL> declare
  2      l_load number;
  3  begin
  4      for l_HOURS in .. 100
  5      loop
  6          for l_HOSTS in .. 100
  7          loop
  8              l_load := dbms_random.random;
  9              insert into website(hostname,upTime,load,other_stats)values('hostnm' || l_hosts, sysdate-(100-l_hours)/24,l_load, 'x' );
 10              insert into indexedwebsite(hostname,upTime,load,other_stats)values('hostnm' || l_hosts, sysdate-(100-l_hours)/24,l_load, 'x' );
 11          end loop;
 12          commit;
 13      end loop;
 14  end;
 15  /

PL/SQL procedure successfully completed.

SQL>
SQL>
SQL> analyze table website compute statistics;

Table analyzed.

SQL>
SQL>
SQL> analyze table indexedwebsite compute statistics;

Table analyzed.

SQL>
SQL>
SQL> set autotrace on
SQL> select avg(load)
  2    from website
  3   where hostname = 'hostnm50'
  4     and upTime >= sysdate-100/24
  5  /

 AVG(LOAD)
----------
45908976.3

row selected.


Execution Plan
----------------------------------------------------------
Plan hash value: 757115644

--------------------------------------------------------------
| Id  | Operation          | Name    | Rows  | Bytes | Cost  |
--------------------------------------------------------------
|   SELECT STATEMENT   |         |     |    29 |    21 |
|   |  SORT AGGREGATE    |         |     |    29 |       |
|*  |   TABLE ACCESS FULL| WEBSITE |   100 |  2900 |    21 |
--------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   - filter("HOSTNAME"='hostnm50' AND
              "UPTIME">=SYSDATE@!-4.16666666666666666666666666666666666667)

Note
-----
   - cpu costing is off (consider enabling it)


Statistics
----------------------------------------------------------
          1  recursive calls
          0  db block gets
        136  consistent gets
          0  physical reads
          0  redo size
        416  bytes sent via SQL*Net to client
        380  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          1  rows processed

SQL> select avg(load)
  2    from indexedwebsite
  3   where hostname = 'hostnm50'
  4     and upTime >= sysdate-100/24
  5  /

 AVG(LOAD)
----------
45908976.3

row selected.


Execution Plan
----------------------------------------------------------
Plan hash value: 2378983545

-----------------------------------------------------------------------
| Id  | Operation         | Name              | Rows  | Bytes | Cost  |
-----------------------------------------------------------------------
|   SELECT STATEMENT  |                   |     |    29 |     |
|   |  SORT AGGREGATE   |                   |     |    29 |       |
|*  |   INDEX RANGE SCAN| INDEXEDWEBSITE_PK |   100 |  2900 |     |
-----------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   - access("HOSTNAME"='hostnm50' AND
              "UPTIME">=SYSDATE@!-4.16666666666666666666666666666666666667)

Note
-----
   - cpu costing is off (consider enabling it)


Statistics
----------------------------------------------------------
          1  recursive calls
          0  db block gets
          4  consistent gets
          0  physical reads
          0  redo size
        416  bytes sent via SQL*Net to client
        380  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          1  rows processed

SQL>
SQL> set autotrace off
SQL>
SQL> drop table website;

Table dropped.

SQL> drop table indexedwebsite;

Table dropped.

   
    
  
Related examples in the same category
1. autotrace command
2. Autotrace on and off
3. Autotrace lower text function
4. Autotrace running total
5. Autotrace a query on a huge table
6. Autotrace a large table
7. Autotrace a query with group clause
8. Execution Plan
9. autotrace a nested query
10. set autotrace on explain for every single statement
11. set autotrace traceonly explain for bitmap index
12. set autotrace traceonly explain, and condition
13. set autotrace traceonly statistics
14. set autotrace traceonly statistics for 'select * from tableName'
15. set autotrace traceonly
16. AUTOTRACE exists (subquery)
17. AUTOTRACE table joining
18. AUTOTRACE table joining and aggregate function
19. autotrace ansi full outer join
20. autotrace count(*)
21. autotrace ctxsys.context index
22. autotrace merge command
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.