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

Thread: Using DBMS_SPACE_ADMIN to manage LMT's

  1. #1
    Join Date
    Aug 2000
    Posts
    236
    Fellow DBA's,

    I have just completed implementing LMT's in my org and felt that I need to train myself using DBMS_SPACE_ADMIN package.

    Other than the Package reference doc, where can I get more info about using them?

    More specifically, these procedures call for arguments like:

    DBMS_SPACE_ADMIN.SEGMENT_VERIFY (
    tablespace_name IN VARCHAR2,
    header_relative_file IN POSITIVE,
    header_block IN POSITIVE,
    verify_option IN POSITIVE DEFAULT SEGMENT_VERIFY_EXTENTS);

    How do I determine the header block or relative file values?

    Thanks,
    Nizar

  2. #2
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    from dba_segments

    Code:
    lsc@MOVE>desc dba_segments
     Name                                                              Null?    Type
     ----------------------------------------------------------------- -------- ------------------------
     OWNER                                                                      VARCHAR2(30)
     SEGMENT_NAME                                                               VARCHAR2(81)
     PARTITION_NAME                                                             VARCHAR2(30)
     SEGMENT_TYPE                                                               VARCHAR2(18)
     TABLESPACE_NAME                                                            VARCHAR2(30)
     HEADER_FILE                                                                NUMBER
     HEADER_BLOCK                                                               NUMBER
     BYTES                                                                      NUMBER
     BLOCKS                                                                     NUMBER
     EXTENTS                                                                    NUMBER
     INITIAL_EXTENT                                                             NUMBER
     NEXT_EXTENT                                                                NUMBER
     MIN_EXTENTS                                                                NUMBER
     MAX_EXTENTS                                                                NUMBER
     PCT_INCREASE                                                               NUMBER
     FREELISTS                                                                  NUMBER
     FREELIST_GROUPS                                                            NUMBER
     RELATIVE_FNO                                                               NUMBER
     BUFFER_POOL                                                                VARCHAR2(7)

  3. #3
    Join Date
    Aug 2000
    Posts
    236
    Pando,

    Thank you.

    I ran these procedures and got the message "Statement processed).

    I am assuming that no corruptions or anomalies are present in my bitmaps.

    If there are and needs to be fixed, how/where will I get the appropriate messages.

    Thnaks,

    Nizar

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