Query dictionary table : dictionary « System Tables Views « 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 » System Tables Views » dictionary 
Query dictionary table
 
SQL>
SQL> set echo off
SQL> set verify off
SQL> set linesize 72
SQL> set pagesize 9999
SQL> set feedback on
SQL>
SQL> column table_name format a30
SQL> column comments format a200
SQL>
SQL>
SQL> select *
  2  from dictionary
  3  where rownum < 50
  4  /
TABLE_NAME
------------------------------
Comments
------------------------------------------------------------------------
ALL_XML_SCHEMAS
Description of all XML Schemas that user has privilege to reference

ALL_XML_SCHEMAS2
Dummy version of ALL_XML_SCHEMAS that does not have an XMLTYPE column

DBA_ROLES
All Roles which exist in the database

DBA_PROFILES
Display all profiles and their limits

USER_RESOURCE_LIMITS
Display resource limit of the user

USER_PASSWORD_LIMITS
Display password limits of the user

USER_CATALOG
Tables, Views, Synonyms and Sequences owned by the user

ALL_CATALOG
All tables, views, synonyms, sequences accessible to the user

DBA_CATALOG
All database Tables, Views, Synonyms, Sequences

USER_CLUSTERS
Descriptions of user's own clusters

ALL_CLUSTERS
Description of clusters accessible to the user

DBA_CLUSTERS
Description of all clusters in the database

USER_CLU_COLUMNS
Mapping of table columns to cluster columns

DBA_CLU_COLUMNS
Mapping of table columns to cluster columns

USER_COL_COMMENTS
Comments on columns of user's tables and views

ALL_COL_COMMENTS
Comments on columns of accessible tables and views

DBA_COL_COMMENTS
Comments on columns of all tables and views

USER_COL_PRIVS
Grants on columns for which the user is the owner, grantor or grantee

ALL_COL_PRIVS
Grants on columns for which the user is the grantor, grantee, owner,
or an enabled role or PUBLIC is the grantee

DBA_COL_PRIVS
All grants on columns in the database

USER_COL_PRIVS_MADE
All grants on columns of objects owned by the user

ALL_COL_PRIVS_MADE
Grants on columns for which the user is owner or grantor

USER_COL_PRIVS_RECD
Grants on columns for which the user is the grantee

ALL_COL_PRIVS_RECD
Grants on columns for which the user, PUBLIC or enabled role is the
grantee

DBA_ENCRYPTED_COLUMNS
Encryption information on columns in the database

ALL_ENCRYPTED_COLUMNS
Encryption information on all accessible columns

USER_ENCRYPTED_COLUMNS
Encryption information on columns of tables owned by the user

USER_DB_LINKS
Database links owned by the user

ALL_DB_LINKS
Database links accessible to the user

DBA_DB_LINKS
All database links in the database

DBA_EXP_OBJECTS
Objects that have been incrementally exported

DBA_EXP_VERSION
Version number of the last export session

DBA_EXP_FILES
Description of export files

USER_INDEXES
Description of the user's own indexes

ALL_INDEXES
Descriptions of indexes on tables accessible to the user

DBA_INDEXES
Description for all indexes in the database

USER_IND_COLUMNS
COLUMNs comprising user's INDEXes and INDEXes on user's TABLES

ALL_IND_COLUMNS
COLUMNs comprising INDEXes on accessible TABLES

DBA_IND_COLUMNS
COLUMNs comprising INDEXes on all TABLEs and CLUSTERs

USER_IND_EXPRESSIONS
Functional index expressions in user's indexes and indexes on user's
tables

ALL_IND_EXPRESSIONS
FUNCTIONAL INDEX EXPRESSIONs on accessible TABLES

DBA_IND_EXPRESSIONS
FUNCTIONAL INDEX EXPRESSIONs on all TABLES and CLUSTERS

USER_JOIN_IND_COLUMNS
Join Index columns comprising the join conditions

ALL_JOIN_IND_COLUMNS
Join Index columns comprising the join conditions

DBA_JOIN_IND_COLUMNS
Join Index columns comprising the join conditions

USER_OBJECTS
Objects owned by the user

ALL_OBJECTS
Objects accessible to the user

DBA_OBJECTS
All objects in the database

USER_PROCEDURES
Description of the users own procedures


49 rows selected.

SQL>
SQL> --

 
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.