EXCEPTION: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE

Hello,
I'm getting the exception when I go to run the following update statement (via PreparedStatement using JDBC):
UPDATE my_table SET my_column_1 = ? WHERE my_column_ID = ?
I searched google and couldn't determine the proper fix for this:
http://ora-29861.ora-code.com/
What I do know from SQL Developer:
my_table has several indexes of which all have a status of "valid"
my_column_ID has an index on it. the column type for this column is NUMBER(10,0)
my_column_1 is a VARCHAR2(40 BYTE)
So I'm uncertain where to go from here and any help would be great.
Thanks,
Jim
Edited by: Jim Atharris on Jun 3, 2009 4:54 PM

I guess its a problem with the index on my_table. I guess you can first drop the specific index using my_column_id and then try updating the table. After your updates are successful, you can create the index again. I may not be right, but just trying my hand.

Similar Messages

  • Party Merge ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE

    Hi gurus,
    i am using 11.5.10.2 on linux.
    while running the party merge concurrent program , we are getting below error, please help.
    Errors in Merge :
    Application: Receivables_
    Error: Merge failed in Receivables (HZ_STAGED_PARTY_SITES ) with the following error message:
    This unexpected SQL error occurred during the merge process :
    ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE
    The following record was being handled when the error occurred :
    Thanks
    RB

    Thanks Hussain, this is similer to the error i got, i will run the steps and get back to you, once again thanks for your prompt responce.
    Thx
    RB
    Edited by: R12DBA on Jul 23, 2010 4:36 PM
    Edited by: R12DBA on Jul 23, 2010 4:50 PM

  • ORA-29857: domain indexes and/or secondary objects exist in the tablespace

    I tried to drop tablespace APPS_TS_TX_DATA using drop tablespace APPS_TS_TX_DATA including contents and datafiles cascade constraints.
    I got error ORA-29857: domain indexes and/or secondary objects exist in the tablespace.
    After I have dropped all domain indexes, then tried to drop tablespace again, I still got the same error. I have searched metalink regarding this error, there is no hit.
    What exactly objects in the tablespace are prevenng dropping the tablespaces?

    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    ILMU88>
    ILMU88> SELECT COUNT(*)
    2 FROM dba_segments
    WHERE tablespace_name = 'APPS_TS_TX_DATA';
    3
    COUNT(*)
    14190
    drop tablespace APPS_TS_TX_DATA including contents and datafiles cascade constraints;
    drop tablespace APPS_TS_TX_DATA including contents and datafiles cascade constraints
    ERROR at line 1:
    ORA-29857: domain indexes and/or secondary objects exist in the tablespace

  • Dropping index gives ORA-29861

    Hello
    We have an application which reads data from MapInfo Spatialware using MapInfo Professional and upload this data into Oracle Spatial tables using MapInfo Easy Loader utility.
    The constraint is that tables in oracle spatial must not be dropped. So we have written a stored procedure which queries unique and spatial indexes of a feature table, then it drops them and truncates the table.
    Easy loader then uploads fresh data into these truncated tables and re creates spatial and unique indexes.
    This solution is working fine except for 1 feature table "ZONE". The stored procedure is unable to drop the indexes and error log shows error "ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE".
    I looked into discussion forums and they say to drop the indexes specifying keyword "FORCE" but how can i query whether index is corrupt and i must force drop it. Index state is all VALID which i check them...
    below is the stored procedure....
    CREATE OR REPLACE
    PROCEDURE Spa_Initializetables
         (     TNAME          IN     VARCHAR2,
         SPATIALCOL          IN     VARCHAR2,
              ERROR_CODE OUT     NUMBER,
              ERROR_MESSAGE     OUT     VARCHAR2
    IS
    CURSOR c1 IS
    SELECT * FROM user_sdo_index_info WHERE table_name LIKE UPPER(TNAME) AND column_name LIKE UPPER(SPATIALCOL);
    BEGIN
    --Truncate the given table
    EXECUTE IMMEDIATE 'TRUNCATE TABLE ' || TNAME;
    --Loop through all the indexes found and drop them one by one
    FOR cur_ts IN c1 LOOP
    --DBMS_OUTPUT.PUT_LINE(cur_ts.index_name);
    EXECUTE IMMEDIATE 'DROP INDEX '|| cur_ts.index_name;
    END LOOP;
    ERROR_CODE := 0;
    EXCEPTION
         WHEN OTHERS THEN
         ERROR_CODE          :=     1;
         ERROR_MESSAGE     := SQLERRM;     
    END Spa_Initializetables;
    please let me know what best i can do
    Regards
    Sam

    Sorry, but I can't simulate this troulbe. look:
    create table a (id number, lmao mdsys.sdo_geometry)
    INSERT INTO mdsys.sdo_geom_metadata_table (SDO_OWNER,SDO_TABLE_NAME,SDO_COLUMN_NAME,SDO_DIMINFO,SDO_SRID)
    VALUES ('GIS','A','LMAO',SDO_DIM_ARRAY(
    SDO_DIM_ELEMENT('X', -180,180, 5e-4),
    SDO_DIM_ELEMENT('Y', -180,180, 5e-4)), NULL);                         
    create index a_g_idx on a(lmao) indextype is mdsys.spatial_index;
    insert into a values (1,SDO_geometry(2003,NULL,NULL,SDO_elem_info_array(1,1003,3),SDO_ordinate_array(1,1, 2,2)));
    commit;
    truncate table a;
    insert into a values (2,SDO_geometry(2003,NULL,NULL,SDO_elem_info_array(1,1003,3),SDO_ordinate_array(1,1, 2,2)));
    drop table a;
    No errors :(
    I have 10.2.0.3
    May be i didn't understood you ?

  • ORA-29861 Error while editing or adding search keywords in a File Item

    Hi,
    We are getting the following error while editing or adding search keywords to a file item:
    ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE
    DAD name: portal30 PROCEDURE : PORTAL30.wwv_edit_tab.edititem
    Can you please tell us what went wrong.
    Thanks

    Vikas,
    From the server error messages reference:
    Cause: An attempt has been made to access a domain index that is being built or is marked failed by an unsuccessful ODCIIndexCreate or is marked unusable by a DDL operation.
    Action: Wait if the specified index is marked LOADING Drop the specified index if it is marked FAILED Drop or rebuild the specified index if it is marked UNUSABLE.
    It's possible you were loading the document while the index was being rebuilt. Search all_indexes where DOMIDX_STATUS <> 'VALID' OR DOMIDX_OPSTATUS <> 'VALID' to find the offending index and rebuild it.
    Regards,
    Jerry
    null

  • Help! ORA-29861!

    Hi, ladies and gentlemen!
    I have used oracle database 11.1.06 + WebLogice Server 10.3.0 + Agile PLM 9.3 to setup a product management system, but i can't upload attachments! It told me it was an error ORA-29861 there.
    Who can tell me how to resolve this problem?
    PS: I am a noob in this applification field.

    Hi, below is the error tips i met.
    ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE
    java.sql.SQLException: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java
    :125)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.
    java:185)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedS
    tatement.java:633)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStateme
    nt.java:1086)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePrep
    aredStatement.java:2984)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStat
    ement.java:3076)
    at weblogic.jdbc.wrapper.PreparedStatement.execute(PreparedStatement.jav
    a:98)
    at com.agile.pc.cmserver.attachment.AttachmentDAO.appendFileRow(Attachme
    ntDAO.java:258)
    at com.agile.pc.cmserver.attachment.AttachmentServiceFiles.saveAdd(Attac
    hmentServiceFiles.java:548)
    at com.agile.pc.cmserver.attachment.AttachmentServiceFiles.saveRow(Attac
    hmentServiceFiles.java:608)
    at com.agile.pc.cmserver.attachment.AttachmentService.addFile(Attachment
    Service.java:2111)
    at com.agile.pc.cmserver.base.BaseServiceAttachment.addFile(BaseServiceA
    ttachment.java:896)
    at com.agile.pc.cmserver.base.BaseService.addFile(BaseService.java:4424)
    at com.agile.pc.cmserver.base.BaseService.addFiles(BaseService.java:4501
    at com.agile.pc.cmserver.base.CMSessionBean.addFiles(CMSessionBean.java:
    3842)
    at com.agile.pc.cmserver.item.ItemSessionBean_v9sfth_EOImpl.addFiles(Ite
    mSessionBean_v9sfth_EOImpl.java:9611)
    at com.agile.ipa.pc.CMObjectBase.wCmaddFiles(CMObjectBase.java:4460)
    at com.agile.ui.pcm.common.ObjectViewHandler.uploadFileAttachments(Objec
    tViewHandler.java:13480)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.agile.ui.web.action.ActionServlet.invokeMethod(ActionServlet.java
    :1062)
    at com.agile.ui.web.action.ActionServlet.handleRequest(ActionServlet.jav
    a:667)
    at com.agile.ui.web.action.ActionServlet.doPost(ActionServlet.java:309)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:42)
    at com.agile.ui.pcm.common.filter.RemoteFSRequestFilter.doFilter(RemoteF
    SRequestFilter.java:143)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:42)
    at com.agile.ui.web.filter.LoggingFilter.doFilter(LoggingFilter.java:108
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:42)
    at com.agile.ui.pcm.common.filter.WebClientLog.doFilter(WebClientLog.jav
    a:78)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:42)
    at com.jspbook.GZIPFilter.doFilter(GZIPFilter.java:21)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:42)
    at com.agile.ui.pcm.common.filter.SSOTicketFilter.doFilter(SSOTicketFilt
    er.java:84)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3496)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

  • Local Domain Index  query fails with ora-01410: invalid rowid

    Hello!
    I have a task to implement partitioned domain index for range partitioned table.
    As I understood from reference http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28425/dom_idx.htm
    the main difference is to provide support for partitioning operations by
    implementing corresponding ODCI interface functions.
    For the first I decided to create something simple to not spend time on system partitioned
    index storage table. My problem is that domain index works correctly when it's created without
    support for partitioning and produces "*ORA-01410: INVALID ROWID*" when it's created
    with LOCAL option.
    Test query:
    SELECT /* +index(from_sample_index) */ * FROM index_in_partitioned_tbl WHERE position_between(card_no)  < 50 ORDER BY card_no DESC;
    Index creared in this way returns 3 rows:
    CREATE INDEX from_sample_index ON index_in_partitioned_tbl (card_no) INDEXTYPE IS position_indextype;
    When index has been creared with LOCAL option I got "ORA-01410: INVALID ROWID" :
    CREATE INDEX from_sample_index ON index_in_partitioned_tbl (card_no) INDEXTYPE IS position_indextype LOCAL;
    I don't post implementation's source code to reduce amount of text in post. It works for global index.
    If I copy rowid from index storage table and then put it into something like
    SELECT card_no FROM index_in_partitioned_tbl WHERE rowid = 'AAAXHGAAEAAAFERAAh';
    then it will be executed successfully without any errors.
    I suppose the error could be somehow linked with "alter index" calls that Oracle makes when local domain index is created.
    The calls are made with option "AlterIndexRebuild" - possibly they mark index as invalid (though it's shown as valid in SQL Developer)

    Solved :)
    when index is LOCAL calls for ODCIINDEXSTART - ODCIINDEXFETCH - ODCIINDEXCLOSE are executed for each partition of base table.
    In my case ODCIINDEXFETCH returns row_id's regardless of partition that are currently scanned for values. So first call returned rowid values for all partitions not only for the first partition and validation failed with "ora-01410: invalid rowid"

  • Ora-29886 feature not supported for domain indexes ??

    Could anyone tell me the reason for the following error
    ora-29886 feature not supported for domain indexes
    What are domain indexes ..??
    Thanks in advance ..

    It would have been better if you posted the statement that caused the error.
    If you are using something like MERGE INTO, it is not supported with with Domain Indexes. Workaround is to complete your insert with individual insert statements or drop the Domain Index before insert and recreate the index after insert
    Domain indexes are built for specific applications (specific domain) like Oracle text, Oracle Spatial etc. So depending on what application you are running, you might be using domain indexes. You create domain indexes as you create b-tree indexes, but the difference is that you have to define the INDEXTYPE.
    You can find domain indexes in DBA_SECONDARY_OBJECTS. Find the index on the table you are using, then check the definition of the index and see what it looks like.

  • Error during altering a domain index - 10gr2

    10.2.0.5 on RHEL-4
    I would like to reduce some redo entries to prevent huge generation of archive-logs.
    select index_name, table_owner, table_name, tablespace_name from user_indexes where index_type='DOMAIN' and logging='YES';
    SQL> alter INDEX ISE_HIST#LOC nologging;
    alter INDEX ISE_HIST#LOC nologging
    ERROR at line 1:
    ORA-29871: invalid alter option for a domain index
    Why I am unable to convert into no-logging mode ? What is the correct way of doing this?
    Thanks!

    >
    I would like to reduce some redo entries to prevent huge generation of archive-logs.
    select index_name, table_owner, table_name, tablespace_name from user_indexes where index_type='DOMAIN' and logging='YES';
    SQL> alter INDEX ISE_HIST#LOC nologging;
    alter INDEX ISE_HIST#LOC nologging
    ERROR at line 1:
    ORA-29871: invalid alter option for a domain index
    Why I am unable to convert into no-logging mode ? What is the correct way of doing this?
    >
    As the exception message says you can't use the logging/nologging clause for domain indexes. Oracle doesn't support that functionality.
    See ALTER INDEX in the SQL Language doc
    >
    index
    Specify the name of the index to be altered.
    Restrictions on Modifying Indexes The modification of indexes is subject to the following restrictions:
    •If index is a domain index, you can specify only the PARAMETERS clause, the RENAME clause, the rebuild_clause (with or without the PARAMETERS clause), the parallel_clause, or the UNUSABLE clause. No other clauses are valid.
    •You cannot alter or rename a domain index that is marked LOADING or FAILED. If an index is marked FAILED, the only clause you can specify is REBUILD.
    >
    The first bullet point above itemizes the clauses you can specify for a domain index and LOGGING/NOLOGGING is not one of them. As that point says 'No other clauses are valid'.
    There are no workarounds.

  • Simon, why do I get an OrdImage.setProperties() exception ORA-22288

    Hi Simon;
    I've debugged a problem with the ImageExample to the point where I'm convinced one cannot call setProperties indirectly as the example code shows. SetProperties can only be called during a load - for example imgObj.LoadFromFile
    The example from OTN sample code shows a sample method:
    public void setPropertiesExample(OracleConnection con)
    try
    int index = 0;
    Statement s = con.createStatement();
    OracleResultSet rs =
    (OracleResultSet)s.executeQuery("select * from ordimagetab where id = 5 for update");
    while(rs.next())
    index = rs.getInt(1);
    OrdImage imgObj = (OrdImage) rs.getCustomDatum(2, OrdImage.getFactory());
    imgObj.setProperties();
    System.out.println("set Properties called");
    if(imgObj.checkProperties())
    System.out.println("checkProperties called");
    System.out.println("setProperties successful");
    System.out.println("checkProperties successful");
    System.out.println("successful");
    else
    System.out.println("checkProperties called");
    System.out.println("setProperties not successful");
    System.out.println("checkProperties successful");
    OraclePreparedStatement stmt1 =
    (OraclePreparedStatement) con.prepareCall("update ordimagetab set image = ? where id = " + index);
    stmt1.setCustomDatum(1,imgObj);
    stmt1.execute();
    stmt1.close() ;
    rs.close();
    s.close();
    catch(Exception e)
    System.out.println("exception raised " + e);
    }No matter how many times I set this example or create something similar I get this error when I do something like:
    ImageExample ie = new ImageExample();
    con = ie.connect();
    ie.setPropertiesExample(con);
    exception raised java.sql.SQLException: ORA-22288: file or LOB operation FILEOPEN failed
    No such file or directory
    ORA-06512: at "ORDSYS.ORDIMG_PKG", line 418
    ORA-06512: at "ORDSYS.ORDIMAGE", line 25
    ORA-06512: at line 2
    I noticed the only way to avoid this problem is to load the image immediately prior to the setproperties call...like:
    OrdImage imgObj = (OrdImage) rs.getCustomDatum(2, OrdImage.getFactory());
    imgObj.loadDataFromFile("imgdemo.dat");
    imgObj.setProperties();
    imgObj.getDataInFile("fileexample.dat");Here I get setproperties to work, but I need to change a lot of code to load images in this form...
    I am using the constructors provided and the functions you provided some time back - so I do not believe initialization is the issue here. Any ideas what might be wrong here??

    Hi Chris,
    There are a number of configuration and/or setup problems that can
    cause this error. But first, it might be worth describing at a higher
    level what is going on here.
    By default an interMedia object can store or 'reference' data in one
    of 3 ways:
    - local: the data is stored locally in the BLOB, the local flag is
    set to 1 to indicate this.
    - FILE: the source type is set to FILE, which indicates the data is
    stored in a directory of which the server is aware and to
    which the user/schema has been granted access. The source
    location specifies the database server directory name, which
    will be upper case unless you created a mixed-case name with
    the CREATE DIRECTORY command. The source name specifies the
    file name, which is case sensitive on Unix platforms.
    - HTTP: the source type is set to HTTP, which indicates the data is
    accessed via a web server. The source location is the domain,
    port and path and the source name is the item name.
    If you instantiate an ORDIMAGE object using something like:
    CREATE OR REPLACE DIRECTORY MY_IMAGE_DIR AS 'c:\myphotos';
    INSERT INTO MY_IMAGES VALUES
    ( 1, ORDSYS.ORDIMAGE.INIT( 'FILE', 'MY_IMAGE_DIR', 'photo1.jpg' );then the setProperties method is going to try to open photo1.jpg in
    the directory known to the database as MY_IMAGE_DIR. This can fail
    with "ORA-22288: file or LOB operation FILEOPEN failed; No such file
    or directory" for a number of reasons:
    [list]
    [*]The directory MY_IMAGE_DIR was never created using CREATE DIRECTORY
    [*]The user was not granted read access to MY_IMAGE_DIR
    [*]The directory c:\myphotos doesn't exist
    [*]The file photo1.jpg doesn't exist in c:\myphotos
    [list]
    Bear in mind that, essentially, everything is happening at the server,
    all the client is doing is causing the setProperties method of the
    ORDIMAGE type to be invoked at the server, which reads the image file,
    which must be accessible to the server. Assuming everything to be OK,
    then the properties will be read from the image and stored in the
    object. Of course, since BFILEs are writable, you can't operate on
    this image to scale, crop or convert it, for example.
    However, in your case, you're hitting one of the problems listed above.
    Bear in mind, there are others. For example, although you might be able
    to access an image on a shared network drive of some sort, doesn't mean
    to say that the database server can do so. This is a common problem on
    NT. When logged in as you, you might be able to mount a network drive
    and access an image file on that drive. However, that access is being
    performed with your NT credentials and access rights. The database server
    doesn't have the same credentials and access rights and in all likelyhood
    will NOT be able to access the same file. Of course, the same situation
    can occur in Unix land with NFS.
    Contrast all that with what happens when a client application calls
    loadDataFromFile. In this case, the client is reading image data from
    a file that is local to the client (which could easily be on a
    different machine than the server) and writing that image data
    directly into the database as the contents of the BLOB. Therefore,
    assuming the image format is recognized, setProperties is going to
    succeed because the data is in the database, not external to it.
    To sum up: setProperties can be called on an image when stored as a FILE.
    However, the database server has to be able to access the file and the
    directory in which it is stored. The reason it works when you call
    loadDataFromFile is that the data is written to the BLOB in the database,
    so the database has access.
    Hope that makes sense,
    Simon
    null

  • How to create a domain index on NCLOB Column

    hi all,
    My database version is 10.2.0.1.
    Any body know how to create a domain index on nclob column.
    SQL> alter table test add (nclob1   nclob);
    Table altered.
    SQL> CREATE INDEX test_nclob ON test (nclob1) indextype is ctxsys.context
      2  /
    CREATE INDEX test_nclob ON test (nclob1) indextype is ctxsys.context
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10509: invalid text column: NCLOB1
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 364Regards
    Singh

    Any body know how to create a domain index on nclob columnNot possible per design/documentation:
    The column that you specify must be one of the following types: CHAR, VARCHAR, VARCHAR2, BLOB, CLOB, BFILE, XMLType, or URIType.
    «

  • When I publish a pdf collection with index to a CD, the index won't load

    I am using acrobat XI pro. I have a pdf collection with 30 chapters, a table of contents that is linked to each chapter, and an index. I have inserted a bookmark for the table of contents in each chatper. There are lots of cross chapter links. It all works beautifully on my computer, I can click links between chapters, go back to table of contents using bookmark on each document, and conduct a search that uses the right index and breaks results down per chapter. But when I burn the folder to a CD and install on another computer, the index won't load and the table of contents link is broken. the index is there on the CD, every file and the file structure looks identical to what is on my computer hard drive. I have tried different methods of burning the disc. They all say they are successfully burned. But when I insert into another computer (have tried a laptop and desktop), I either get an error message about the index or it just create it at all. I deleted the index and all of its associated files and recreated from scratch, associating each of the 30 chapter to the index again, but still does not work. Help, past deadline already!

    I fail to see the issue. You have added crop marks, have you not? For all intents and purposes those are marks that are supposed to be visible and printable for cutting in the real world. If you don't want them, don't use them. Acrobat can generate them on the fly for printing, anyway.
    Mylenium

  • Domain index on list-partitioned table?

    Hi,
    I have a list-partitioned table, and wanted to create a partitioned Oracle Text index on it. I keep getting an error, and am now wondering if it's possible to do. Here is my syntax:
    CREATE INDEX SCHEMA1.IDX_ALL_TEXT_LOCAL ON SCHEMA1.TABLE1(ALL_TEXT)
    INDEXTYPE IS CTXSYS.CONTEXT
    LOCAL
    (PARTITION PTN1 PARAMETERS('sync (on commit) storage ptn1'),
    PARTITION PTN2 PARAMETERS('sync (on commit) storage ptn2'),
    PARTITION PTN3 PARAMETERS('sync (on commit) storage ptn3'),
    PARTITION PTN4 PARAMETERS('sync (on commit) storage ptn4'),
    PARTITION PTN5 PARAMETERS('sync (on commit) storage ptn5'),
    PARTITION PTN6 PARAMETERS('sync (on commit) storage ptn6'),
    PARTITION PTN7 PARAMETERS('sync (on commit) storage ptn7'),
    PARTITION PTN8 PARAMETERS('sync (on commit) storage ptn8')
    PARAMETERS('section group my_group lexer new_lexer');
    ERROR at line 1:
    ORA-29850: invalid option for creation of domain indexes
    Any advice would be much appreciated.
    Thanks,
    Nora

    ... will it spread the index across the tablespaces that are associated with each partition?No, as demonstrated below.
    SCOTT@orcl_11gR2> CREATE TABLE table1
      2       ( id         NUMBER(6),
      3         all_text      VARCHAR2 (20)
      4       )
      5  PARTITION BY LIST (id)
      6   (PARTITION ptn1 VALUES (2,4) TABLESPACE example,
      7    PARTITION ptn2 VALUES (3,9) TABLESPACE example
      8   )
      9  /
    Table created.
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO table1 VALUES (2, 'test2')
      3  INTO table1 VALUES (3, 'test3')
      4  INTO table1 VALUES (4, 'test4')
      5  INTO table1 VALUES (9, 'test9')
      6  SELECT * FROM DUAL
      7  /
    4 rows created.
    SCOTT@orcl_11gR2> CREATE INDEX IDX_ALL_TEXT_LOCAL
      2  ON TABLE1 (ALL_TEXT)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    Index created.
    SCOTT@orcl_11gR2> SELECT table_name, tablespace_name
      2  FROM   user_tab_partitions
      3  WHERE  table_name = 'TABLE1'
      4  /
    TABLE_NAME                     TABLESPACE_NAME
    TABLE1                         EXAMPLE
    TABLE1                         EXAMPLE
    2 rows selected.
    SCOTT@orcl_11gR2> SELECT table_name, tablespace_name
      2  FROM   user_tables
      3  WHERE  table_name LIKE '%IDX_ALL_TEXT_LOCAL%'
      4  /
    TABLE_NAME                     TABLESPACE_NAME
    DR$IDX_ALL_TEXT_LOCAL$I        USERS
    DR$IDX_ALL_TEXT_LOCAL$R        USERS
    DR$IDX_ALL_TEXT_LOCAL$N
    DR$IDX_ALL_TEXT_LOCAL$K
    4 rows selected.
    SCOTT@orcl_11gR2>

  • Issue creating domain index

    what lob error? This is a domain index on a clob. I don't have any special settings.
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in drvxtab.create_index_tables
    ORA-22853: invalid LOB storage option specification
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 364
    CREATE INDEX myind ON
    my_mv(my_text)
    INDEXTYPE IS ctxsys.context
    PARAMETERS('MEMORY 500m FILTER INSOFilterpref STORAGE bfile_storage')
    PARALLEL 4;

    I remember this error when dealing with InterMedia. Specifically with Maximo.
    I believe you need to set and define your global lexer.
    Another key was to grant 'all privileges' to ctxsys within Oracle.
    There is definitely a lot more to this than what I mentioned.
    There are entire books on setting this up and tuning it.

  • FRM-40735: WHEN-CUSTOM-ITEM-EVENT trigger raised unhandled exception ORA-06502.

    Hi Expert,
    Forms Version : 11.1.2.1.0
    Client JRE : 1.6.0_45-b06 Java HotSpot(TM) Client VM
    Run webutil_demo form, http://host:9001/forms/frmservlet?form=webutil_demo.fmx&config=webutil
    it appears following error.
    FRM-40735: WHEN-CUSTOM-ITEM-EVENT trigger raised unhandled exception ORA-06502.
    No error logged in java console client side.
    I've try to re-compile webutil_demo.fmb
    Unattaching and then re-attaching the plsql library webutil.pll to forms using a 11g Forms Builder (instead of earlier version) and then loading the form to the server and compiling form but error still exist.
    Will you please help to give any suggestion?
    Is there any trace can be enabled to find some more details?

    Welcome to OTN
    Before posting on this forum please read
    FRM-40735: WHEN-CUSTOM-ITEM-EVENT trigger raised unhandled exception ORA-06502.
    you'll get some hint here
    Oracle/PLSQL: ORA-06502 Error

Maybe you are looking for

  • Loading the laserjet pro 200 color m251 nw one sheet at a time?

    How are you supposed to load the laserjet pro 200 color m251 nw one sheet at a time?

  • WLS 8.1 issue with .ear deployment ....

    I think the weblogic8.1 seems to have some NEW bug now. We have a .ear file that works just PERFECT in WLS6.1. But now when we try to DEPLOY this .ear file our WLS8.1 server(via the new look and feel of WLS8.1' console)....we are getting the Exceptio

  • Can't start macbook air osx maveriks

    can't start macbook air osx maveriks

  • Call event handler programatically

    Hi, I have a function that handles a change event from a combo box. The problem is that, I also want to call the function from within the program, but the function is waiting for a change event. Is it possible to call an event handler programatically

  • Scribus 1.4.4 ICC profiles

    Hi, Today, I noticed Scribus doesn't have all the CMJN profiles, and doesn't seem to be able to export to PDF-X/3 anymore... I used it to produce professional printings some time ago and it worked perfectly... If I try to open a document with Fogra 3