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

Thread: LogMiner Utility in Ora 8i

  1. #1
    Join Date
    May 2002
    Posts
    35
    While working with Logminer Utility ,i have faced a problem while initially creating a dictionary file, using the DBMS_LOGMNR_D.build ( ....) the error that is returned is

    ORA6532 Subscript outside of limit

    How could i fix this problem

    Could anyone out there help me please??

    regards,

    sharmila

  2. #2
    Join Date
    Jan 2002
    Location
    Netherlands
    Posts
    1,587
    in the dbms utility
    dbmslmd.sql the type is standard
    TYPE col_desc_array IS VARRAY(513) OF col_description;
    try to increase this value.
    I didn't have a problem with it myself.

    cheers!!

    Tarry
    Tarry Singh
    I'm a JOLE(JavaOracleLinuxEnthusiast)
    TarryBlogging
    --- Everything was meant to be---

  3. #3
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    that is a bug... you have to modify the package... go to metalink and search I think it is something with array size

  4. #4
    Join Date
    Mar 2001
    Location
    New York , New York
    Posts
    577
    It is a bug in 8i and fixed in 9i. The workaround is

    Edit the file "dbmslmd.sql" located in the "$ORACLE_HOME/rdbms/admin"
    directory.

    Change the line:

    TYPE col_desc_array IS VARRAY(513) OF col_description;

    to

    TYPE col_desc_array IS VARRAY(700) OF col_description;

    and rerun the modified script as internal

    Ronnie
    ronnie_yours@yahoo.com

    You can if you think you can.

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