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

Thread: ext_to_obj_view

  1. #1
    Join Date
    Jun 2002
    Location
    Longmont, Colorado
    Posts
    174

    ext_to_obj_view

    Has anyone heard or used this object to identify the object name for a given block# and file#?

    I just found out I needed to run catclust.sql to create this object in my database. So I did.

    But when I query sys.ext_to_obj_view for a row count, I get zero.

    Can someone explain why?

    Oracle reference says that the 'db file sequential read' wait event returns the file# and block# for the block that was involved in the wait event. The reference says to query the ext_to_obj_view as follows to identify the object name that the block belongs to:

    Code:
    select name, kind
    from ext_to_obj_view
    where file# = file#
    and lowb <= block#
    and highb >= block#;

  2. #2
    Join Date
    Nov 2006
    Location
    Sofia
    Posts
    630
    Look at catclust.sql and see the view definition, that maight give you an idea why. It should not be empty as far as I remember.
    Have you ran catclust as SYS or as SYSTEM?

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