Indexing error in CTXSYS.INSO_FILTER

hi,
Do you know, how can i correctly creat the index in oracle text? I have created a text table:
CREATE TABLE texttable(text_id int PRIMARY KEY not null, titel varchar2(500), author varchar2(20), datum date, text_size int, text_typ varchar2(10), content CLOB)
I have inserted the documents in content column. text_typ column is the format column (text or binary)help for the filtering. I want to create an index for the column content.
CREATE INDEX oracle_index ON texttable(content) INDEXTYPE IS CTXSYS.CONTEXT PARAMETERS('
DATASTORE CTXSYS.DEFAULT_DATASTORE
FILTER CTXSYS.INSO_FILTER format column text_typ
LEXER oracle_lexer_intern
WORDLIST oracle_wordlist_intern
I get always the erro message:
java.sql.SQLException: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-20000: Oracle Text error:
DRG-11000: invalid keyword CTXSYS.INSO_FILTER
ORA-06512: in "CTXSYS.DRUE", line 157
ORA-06512: in "CTXSYS.TEXTINDEXMETHODS", line 186
I don't understand why inso_filter is an invalid keyword. I have seen the same example for INSO_FILTER in the documentation Oracle Text Reference Release 9.2.
How can I solve the problem? Can you give me any suggestions?
Thank you very much. Greetings from Germany.
rabbit

Hi roger,
thank you for your help. I think, i am not getting any line-feeds or other funny characters included in my "PARAMETERS" string. I have only set the attributs for lexer and wordlist. It is not a problem with CTXSYS.INSO_FILTER.
For creating the index i have written the following java programm:
public class OracleText_intern {
public Connection connect() throws Exception{
//OCI-Driver is used
//I have used autocommit
public String index_vorbereitung (Connection conn) throws Exception{
CallableStatement cstmt;
Statement stmt = conn.createStatement();
cstmt = conn.prepareCall("{call ctx_ddl.drop_preference(?)}");
cstmt.setString(1, "oracle_lexer_intern");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.create_preference(?, ?)}");
cstmt.setString(1, "oracle_lexer_intern");
cstmt.setString(2, "BASIC_LEXER");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.set_attribute(?, ?, ?)}");
cstmt.setString(1, "oracle_lexer_intern");
cstmt.setString(2, "base_letter");
cstmt.setString(3, "yes");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.set_attribute(?, ?, ?)}");
cstmt.setString(1, "oracle_lexer_intern");
cstmt.setString(2, "index_stems");
cstmt.setString(3, "german");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.set_attribute(?, ?, ?)}");
cstmt.setString(1, "oracle_lexer_intern");
cstmt.setString(2, "printjoins");
cstmt.setString(3, "_-");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.drop_preference(?)}");
cstmt.setString(1, "oracle_wordlist_intern");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.create_preference(?, ?)}");
cstmt.setString(1, "oracle_wordlist_intern");
cstmt.setString(2, "BASIC_WORDLIST");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.set_attribute(?, ?, ?)}");
cstmt.setString(1, "oracle_wordlist_intern");
cstmt.setString(2, "stemmer");
cstmt.setString(3, "German");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.set_attribute(?, ?, ?)}");
cstmt.setString(1, "oracle_wordlist_intern");
cstmt.setString(2, "fuzzy_match");
cstmt.setString(3, "German");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.set_attribute(?, ?, ?)}");
cstmt.setString(1, "oracle_wordlist_intern");
cstmt.setString(2, "substring_index");
cstmt.setString(3, "true");
cstmt.execute();
cstmt = conn.prepareCall("{call ctx_ddl.set_attribute(?, ?, ?)}");
cstmt.setString(1, "oracle_wordlist_intern");
cstmt.setString(2, "prefix_index");
cstmt.setString(3, "true");
cstmt.execute();
String index_str = "CREATE INDEX oracle_index_intern ON texttable_intern(content)" +
"INDEXTYPE IS CTXSYS.CONTEXT PARAMETERS('" +
"DATASTORE CTXSYS.DEFAULT_DATASTORE" +
"FILTER CTXSYS.INSO_FILTER format column text_typ"+
"LEXER oracle_lexer_intern" +
"WORDLIST oracle_wordlist_intern" +
cstmt.close();
return index_str;
public void textmessung(Connection conn, String indexstr) throws Exception {
for(int i=1; i<12; i++){
if (i==1) {stmt.execute(indexstr);}
else {stmt.execute("ALTER INDEX oracle_index_intern REBUILD PARALLEL");}
public static void main(String[] args) throws Exception{
String index_str = ortext.index_vorbereitung(con);
ortext.textmessung(con, index_str);
I can not find the error. Can you still give me little suggestions?
Thank you very much and greeting from germany
rabbit
     

Similar Messages

  • Oracle Text, create index (indextype is ctxsys.context)

    Dear sirs,
    I am a new user of Oracle Text (Oracle 11g release 11.2) and I am unable to create an index of type ctxsys.context). Any suggestions?:
    code:
    drop table mytable;
    drop index myindex force;
    create table mytable(id number primary key, docs clob);
    insert into mytable values(111555,'this text will be indexed');
    insert into mytable values(111556,'this is a default datastore example');
    commit;
    create index myindex on mytable(docs)
    indextype is ctxsys.context
    parameters ('DATASTORE CTXSYS.DEFAULT_DATASTORE');
    +++++++
    error messages:
    create index myindex on mytable(docs)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    Please check for invalid objects. Log on as sys or system and run:
    select owner, object_name, object_type from all_objects where status='INVALID';
    Post the results here and we'll advise the next step.
    If any objects owned by CTXSYS are invalid you may need to recompile the CTXSYS schema.

  • Invalid column Index error - While consuming Calculation view via Native SQL

    Hi Experts,
    I am trying to consume a Calculation view (sql script one) , which has input parameters, via Native SQL in a ABAP program .
    Code snippet for the same would be as follows , Upon execution, it throws an error "Invalid Column Index (8) error " . Can anyone help what could be the issue here ?
    Thanks in Advance,
    Suma
    REPORT ZTEST_HANA2.
    *Report to consume Calculation view (script based) from ABAP
    PARAMETERS: ip_docnr type BELNR_D,
                ip_gjahr type GJAHR,
                ip_bukrs type BUKRS,
                ip_blgr type FAGL_RLDNR.
       DATA: LO_SQL_STMT TYPE REF TO CL_SQL_STATEMENT,
              LO_CONN     TYPE REF TO CL_SQL_CONNECTION,
              LO_RESULT   TYPE REF TO CL_SQL_RESULT_SET,
              LV_SQL      TYPE STRING,
              LR_DATA     TYPE REF TO DATA.
        DATA: LX_SQL_EXC           TYPE REF TO CX_SQL_EXCEPTION,
              LT_SEPMAPPS_CLSDINV  TYPE TABLE OF SEPMAPPS_CLSDINV,
              LV_TEXT              TYPE STRING.
        TRY.
    lv_sql = |SELECT * FROM "_SYS_BIC"."DEMO-ABAP/CA_GET_FI_DATA" | &&
                     |WITH PARAMETERS ('placeholder'= ('$$p_DOCNR$$','{ ip_docnr }'),| &&
                      |'placeholder'=('$$p_GJAHR$$','{ ip_gjahr }')| &&
                      |,'placeholder'= ('$$S_BUKRS$$','{ ip_bukrs }')| &&
                      |,'placeholder'= ('$$p_base_ledger$$','{ ip_blgr }') )| .
             LO_CONN = CL_SQL_CONNECTION=>GET_CONNECTION( ).
             "Create an SQL statement to be executed via the connection
              LO_SQL_STMT = LO_CONN->CREATE_STATEMENT( ).
             "Execute the native SQL query
             LO_RESULT = LO_SQL_STMT->EXECUTE_QUERY( LV_SQL ).
             "Read the result into the internal table lt_sepmapps_clsdinv
             GET REFERENCE OF LT_SEPMAPPS_CLSDINV INTO LR_DATA.
             LO_RESULT->SET_PARAM_TABLE( LR_DATA ).
             LO_RESULT->NEXT_PACKAGE( ).
             LO_RESULT->CLOSE( ).
             LO_CONN->CLOSE( ).
        CATCH CX_SQL_EXCEPTION INTO LX_SQL_EXC.
             LV_TEXT = LX_SQL_EXC->GET_TEXT( ).
             MESSAGE LV_TEXT TYPE 'E'.
        ENDTRY.

    Hi Suma,
    Post the SQL you success run directly on Studio together with error message (even if is the Invalid column index error).
    Check there if the parameters case is working properly... Is it really this confusing options:
    p_GJAHR
    S_BUKRS
    p_base_ledger
    Why not all lower or all upper? Anyhow you must test and find which option works according your modeling
    Regards, Fernando Da Rós

  • Invalid Column Index Error

    Hi all,
    I am trying to create a new report using
    1. Crystal Report XI
    2. Oracle 9i
    3. A stored Procedure
    4. JDBC connection.
    But i could not do it.
    Invalid Column index error is coming.
    Can anyone help.
    Thanks
    Saravanakumar.

    I know this is an old thread but I too am getting a column index error accessing an Oracle 10g database stored procedure using Crystal Reports XI, using the New Report wizard to select the stored procedure.  It prompts me for the sp parameters; I select "set to null" and click OK and get
    Failed to retrieve data from the database. Details:  SQL Exception: [SQL State:] null [Error message:] Invalid Column Index [Database vendor code 17003]
    I can run the procedure and get data just fine with no errors using PL/SQL.

  • Index error in bin

    Hello people!
    I just had a project refuse to save any changes I made in the mixer (add new busses etc). From nowhere, I was given the "index error in bin" message, and also "minor change of project data has taken place".
    There is an archived discussion on this topic here
    I am in the middle of trying to import the messed up project into a new project, using the import function.....
    Anyone else had this come up?
    I'm on Logic 9.1.6, but went from 9.1.3 just recently, and can't be sure when this corruption actually occured - before the update or after.

  • How to use : bind character in DB adapter Select Query SOA11g. Getting Error code :17003 .java.sql.SQLException: Invalid column index error

    Hi All,
    The Actual query to perform is below.
    SELECT name,number from emp  WHERE CASE WHEN :1='T' AND term_date IS Not NULL THEN 1 WHEN :1='A' AND term_date IS NULL THEN 1 WHEN :1='ALL' THEN 1 ELSE  1 END = 1;
    I have tried in DB adapter like below as a parameter for :1 as #vInputParam
    SELECT name,number from emp  WHERE CASE WHEN #vInputParam='T' AND term_date IS Not NULL THEN 1 WHEN #vInputParam='A' AND term_date IS NULL THEN 1 WHEN #vInputParam='ALL' THEN 1 ELSE  1 END = 1;
    Getting Error code :17003 .java.sql.SQLException: Invalid column index error.
    Please suggest me on using ':' bind character in DB adapter Select Query SOA11g.
    Can someone help me on this please?
    Thanks,
    Hari

    Hi,
    Could you please make sure your binding style(Oracle Positional,Oracle named..etc) of the Seeded VO and Custom Vo are same.
    This is the option you will get when you are extending your vo. So make sure that both are same.
    You can refer the below link too
    VO extension leads to "Invalid column index" exception
    Thanks
    Bharat

  • Invalid column index error in sql developer

    Hi,
    I was trying to create stored procedures, functions and packages in sql developer which is connected to Oracle 11g. My instructor is able to execute all of them without any errors in 10g. However, when I try to execute them, I get- "Invalid column index error". Any suggestions on how to rectify this error?

    Hi,
    That is probably an
    ORA-17003: Invalid column index
    Which is a JDBC error. Is Java/JDBC somehow involved?
    If not, could you please post one of the failing statements?
    Regards
    Peter

  • An unexpected 'invalid property array index' error occured in wdbrlog

    Hi experts,
    My system is :
    SAP_BW 7.0 Path  0012
    SAP GUI Final Release Patch 24
    In my query definition, I right-click on one of the characteristics..Eg. Posting Date --> Properties --> Change 'Suppress Results Rows' option from "Never" to "Always". --> Press OK.
    Then I get this pop-up with error message:
    <u>Program Error Intercepted
    An unexpected 'invalid property array index' error occured in wdbrlog.
    1 error(s) are logged.</u>
    If I say continue, it kicks me out of BeX. I need to re-login to do the stuff.
    I find some information, but i dont know what happens.
    Did anyone get the similar error?
    Thanks,
    Marc

    <FONT FACE = "Tahoma", Font Color = "Blue">
    Hi
    <Br>
    I am afraid you may have to re-install your SAP GUI and Business Explorer.
    <Br><Br>Hope it helps.
    <Br>
    <Br>
    Cheers
    Abhijit
    <Br>* Removed
    </FONT>

  • Getting index error on ActionListener in for loop

    Hi, I am working on a little project where I want to create an array of buttons that each individually delete their record in an ArrayList, well everytime I press the delete button I get an index error, I have been toying around with it and just can't seem to find my error. Here is the code and thanks for looking:
    for(j = 0; j < records.size(); j++)
                //Set the size for the JTextFields of Names
                textname[j] = new JTextField(15);
                //Set the size for the JTextFields of Values
                textvalue[j] = new JTextField(15);
                //Create the delete button
                deletebutton[j] = new JButton("Delete" + j);
                deletebuttonaction[j] = new ActionListener() {
                    public void actionPerformed(ActionEvent actionEvent) {
                        records.remove(j);
                deletebutton[j].addActionListener(deletebuttonaction[j]);
                //Set the text for the JTextFields of names
                textname[j].setText(records.get(j).getName());
                //Set the value for the JTextFields of values
                textvalue[j].setText(records.get(j).getValue());
                //Add the textfields to the content pane.    
                contentPane.add(textname[j], BorderLayout.CENTER);
                contentPane.add(textvalue[j], BorderLayout.CENTER);
                contentPane.add(deletebutton[j], BorderLayout.CENTER);
            }

    Ok I see exactly what you're saying, now I just need to devise a plan for dealing with this index error, the only thing is that it used to work on only the first click but with the code you see there I actually get my error right away
    Exception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 5, Size: 5
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.remove(ArrayList.java:387)
         at GUI$7.actionPerformed(GUI.java:362)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6041)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5806)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4413)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2440)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    Edited by: exutable on Jun 3, 2008 4:49 AM

  • Oracle DB Query Generating Invalid Column Index error

    Dear All,
    Apologies for a question on this rather basic error but I don't understand why i'm experiencing the behaviour described.
    The piece of code below connects to a database, runs a query, then attempts to display the contents of the resultset. I understand from other posts on the topic that the query I am executing (INSERT INTO table VALUES (...)) as in the comments below needs to have autocommit disabled to allow me to access the resultset without the transaction closing.
      public void runQuery(String query) throws Exception {   Class.forName("oracle.jdbc.driver.OracleDriver"); Connection con = DriverManager.getConnection(database, username, password); con.setAutoCommit(false); Statement st = con.createStatement();         ResultSet rs = st.executeQuery (query);         // "select * from user_tables"         // "INSERT INTO BH VALUES ('','2.25','Dark Red','Samsonite','4987638762')"         while (rs.next()) {         System.out.print (rs.getString(1)); // Exception thrown here     }         con.commit(); st.close();   con.close();   }
    I have removed try {} catch {} error handling for clarity.
    I am receiving the invalid column index error from the indicated line, which clearly suggest column 1 doesn't exist, however if i run the same query in another tool, something like the following is returned:
    Rows Affected
    1
    The query is being received by the database as the row ends up in the table intact, so I am clearly missing something about how to access the resultset correctly.
    I am guessing that I am either misusing/misunderstanding the autocommit option or that the resultset is different to what I am expecting...
    Can someone please shed a little light?
    Many thanks!
    George

    Ok, I've done a little more digging, and i've come to the conclusion that an INSERT query doesn't return a resultset (or returns an empty one)
    Could someone with a little more knowledge confirm this as I've had little luck finding an explicit yes or no from the web!
    Many Thanks in advance...

  • Timemachine index error messages

    I have read @Pondinis website in regards to index error messages at http://pondini.org/TM/D2.html
    This is for my understanding only.  What is the difference between:
    Waiting for index to be ready (101)
    and
    Waiting for index to be ready (100)
    I know how to fix the two above.  I just want to know what each means.  Is one failure to contact the disk due to the disk and the other failure to contact the disk due to the connection (eg usb issue), if so which is which?

    Thanks @Linc. Apart from taking a half working disk and trying a timemachine backup, then doing the same with a good disk and a dud cable.  Any ideas, tools that I could use to test my theory?

  • Invalid index error HRESULT: 0x8002000B DISP_E_BADINDEX

    one of report have invalid index error HRESULT: 0x8002000B DISP_E_BADINDEX
    using 8.5 method have above error in local development machine
    using 2008 method can show data in report nomally in local development machine
    for what 8.5 method and 2008 method are, please refer my previous post

    closed, but get the same error after set database location
    when verify database
    ADO Error Code 0x
    Invalid object name 'dbo.CurrentAccount'
    Vendor Code 208

  • Invalid Index Error

    Hi,
    We are getting Invalid Index error pop up when we try to view the dimension member of certain dimensions.
    Pease help us in sorting out the issue.
    Regards,
    Raman

    Hello,
    Within Business Warehouse use transaction UJFS, select your application set, select the "adminapp" folder. Select the excel file of your dimension where you have the problem. Delete it.
    Go to BPC Admin, re-open the dimension membersheet. This should work now. Reprocess the dimension (this replaces the excel file of your dimension in UJFS).
    Had the same problem, the above action helped me out.
    Greetz
    Bart

  • Indexing error during an update

    Hello,
    I have got this error message some times when I update a document
    "Full text index failed. Unexpected failure by Indexer.
    Content has been indexed with Info only. Resubmit should only be
    performed if the problem has been resolved. "
    I have not got any apparent problem with my indexation process so I
    don't understand what is the problem.
    Thank you for your response.

    Hi,
    Usually, these kind index error occur because of inconsistent data between the vault folder and database.
    If it only happening for a specific item, then try idcanalyser utility to fix the data. Otherwise check your incremental index setting.
    Also, you can resubmit and see if it indexes properly to rule out any network glitch.
    Thanks,
    Premkumar

  • CCM TREX indexing error

    To CCM gurus,
    Once in a while, I'd get indexing errors while trying to publish a procurement catalog. The errors would say something like:
    1. Error when deleting TREX metadata for catalog ABC...
    2. Error when creating the index for catalog XYZ...
    3. Error in search index update; discarding existing changes
    And then the catalog update is terminated. What we normally do is restarting the TREX server and then we can publish again.
    My question is...can we resolve this without having to restart TREX each time? Is there a way to re-index TREX without restarting it?
    Regards,
    SN

    Hi SN,
    You can check the 'health' of the TREX indexes specific to CCM by use of report /CCM/CHECK_TREX (you need at least CCM 2.0 SP4 for this). In this report, if the index is either orange or red, it is not usable, if it is green it is fine. If the index is coloured red or orange, drill into this index and there will be some short text indicating what the problem with the index is. Once inside this index it can be deleted using the delete (trashcan) icon - in this case, a full publication is required to regenerate the index from fresh.
    It may also be possible to use report /CCM/RECREATE_INDEX providing the index is still valid on the trex server.
    Regards,
    Jason

Maybe you are looking for

  • Connect Thunderbolt Display to Desktop Pc

    Hi guys, i would like to know if is it possible to connect the T.D. to a desktop pc which i want to buy soon..if this pc has a mobo like this i mean:  http://www.asus.it/Motherboards/Intel_Socket_1155/P8Z77V_PROTHUNDERBOLT/ or this http://it.msi.com/

  • Zen Micro photo help, screen stuck on CREAT

    It was a little bit chipped, but when I tried turning it on it gets stuck on the CREATIVE screen. When I did the clean-up procedure it got stuck on "scan disk". What should I do?Message Edited by sooch90 on 09-0-2006 08:52 AM

  • MDT 2013 and SMB 3.0

    Hello, I'm building an MDT environment using NAS boxes for deployment shares. The question is: When running MDT on Server 2012 R2, would the NAS box need full support for SMB 3.0 for the deployment? Thanks in advance Brian.

  • I want to remove buttons in favour of a Windows menu equivalent, how do I control the software without cluttering the GUI?

    My Graphical User Interface is fairly full of controls & buttons, removing the buttons should simplify and improve the appearance of the GUI. I would like to capture all of the menu selections and drive the software without relying on offscreen butto

  • Try to find package com.ms.asp

    In my project, I need to import com.ms.asp.*. Unfortunately, both VJ++ 6.0 and Java SDK 1.3.0 complain that package cann't be found. Would someone give tips of how to find it? Thanks very much!