Map user objects to tablespaces. : dba_tables « System Tables Data Dictionary « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
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
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 Tutorial » System Tables Data Dictionary » dba_tables 
30. 43. 2. Map user objects to tablespaces.
SQL>
SQL> set pagesize 120
SQL> break on Tablespace on Owner
SQL> column Objects format A20
SQL> select
  2        Tablespace_Name,
  3        Owner,
  4        COUNT(*)||' tables' Objects
  5  from DBA_TABLES
  6  group by
  7        Tablespace_Name,
  8        Owner
  9  union
 10  select
 11        Tablespace_Name,
 12        Owner,
 13        COUNT(*)||' indexes' Objects
 14  from DBA_INDEXES
 15  group by
 16        Tablespace_Name,
 17        Owner;
                                                              

TABLESPACE_NAME                 OWNER                           OBJECTS
------------------------------  ------------------------------  --------------------
SYSAUX                          CTXSYS                          26 tables
SYSAUX                                                          47 indexes
SYSAUX                          DBSNMP                          17 tables
SYSAUX                                                          indexes
SYSAUX                          FLOWS_020100                    160 tables
SYSAUX                                                          422 indexes
SYSAUX                          FLOWS_FILES                     tables
SYSAUX                                                          indexes
SYSAUX                          SYS                             175 tables
SYSAUX                                                          247 indexes
SYSAUX                          SYSTEM                          21 indexes
SYSAUX                                                          22 tables
SYSAUX                          TSMSYS                          tables
SYSAUX                                                          indexes
SYSAUX                          XDB                             11 tables
SYSAUX                                                          384 indexes
SYSTEM                          DEFINER                         indexes
SYSTEM                          INV10                           indexes
SYSTEM                          INV11                           indexes
SYSTEM                          INV12                           indexes
SYSTEM                          INV13                           indexes
SYSTEM                          INV14                           indexes
SYSTEM                          INV15                           indexes
SYSTEM                          INV16                           indexes
SYSTEM                          INV17                           indexes
SYSTEM                          INV18                           indexes
SYSTEM                          INV19                           indexes
SYSTEM                          INV20                           indexes
SYSTEM                          JAVA2S                          12 indexes
SYSTEM                                                          14 tables
SYSTEM                          MDSYS                           30 tables
SYSTEM                                                          51 indexes
SYSTEM                          OUTLN                           tables
SYSTEM                                                          indexes
SYSTEM                          SYS                             402 tables
SYSTEM                                                          513 indexes
SYSTEM                          SYSTEM                          145 indexes
SYSTEM                                                          85 tables
USERS                           HR                              19 indexes
USERS                                                           tables
                                CTXSYS                          11 tables
                                DBSNMP                          indexes
                                                                tables
                                DEFINER                         tables
                                FLOWS_020100                    tables
                                HR                              tables
                                INV10                           tables
                                INV11                           tables
                                INV12                           tables
                                INV13                           tables
                                INV14                           tables
                                INV15                           tables
                                INV16                           tables
                                INV17                           tables
                                INV18                           tables
                                INV19                           tables
                                INV20                           tables
                                JAVA2S                          indexes
                                                                tables
                                MDSYS                           indexes
                                                                tables
                                SYS                             28 indexes
                                                                92 tables
                                SYSTEM                          31 tables
                                                                36 indexes
                                XDB                             indexes
                    
SQL>
SQL>
30. 43. dba_tables
30. 43. 1. dba_tables
30. 43. 2. Map user objects to tablespaces.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.