DBAsupport.com Forums - Powered by vBulletin
Results 1 to 7 of 7

Thread: View List

  1. #1
    Join Date
    Jan 2001
    Posts
    515
    I read somewhere that there is a view in oracle that you can query to get the name of all the system views in the database. Does anyone know the name of it?

  2. #2
    Join Date
    Feb 2001
    Location
    Bombay,India
    Posts
    530
    Hi,
    Run the following query under user SYS to find out all the system views in the database.

    select object_name from dba_objects where
    owner='SYS' and object_type ='VIEW'

    Regards,
    Rohit Nirkhe,Oracle DBA,OCP 8i
    oracle-support@indiatimes.com
    Thanks and Regards
    Rohit S Nirkhe
    rohitsnirkhe@rediffmail.com

  3. #3
    Join Date
    Apr 2001
    Posts
    107
    Hi,

    You can also run "select * from dict;"
    It will show you all the dictionary views and their explanation.

    Hope it helps

    Cheers

    Fabien

  4. #4
    Join Date
    Sep 2001
    Location
    NJ, USA
    Posts
    1,287
    If u want get full list of dictionary views the :

    select VIEW_NAME from sys.V_$FIXED_VIEW_DEFINITION
    union
    select VIEW_NAME from ALL_VIEWS where owner = 'SYS'
    union
    select NAME from V$FIXED_TABLE;

  5. #5
    Join Date
    Feb 2001
    Posts
    290
    Hello ALL,

    I do feel difficulty in understanding the some of the colums of the dictionary tables, would anybody help me out in getting the clear description of each column od all dictionary tables, may be in the form of a documnet or any other form...

    Thanks ,
    Madhu

  6. #6
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092

  7. #7
    Join Date
    Jan 2001
    Posts
    642
    This is another link, where you can find explanation for each column

    http://technet.oracle.com/docs/produ...76961/ch32.htm

    Badrinath

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width