Index error

Hi:
I deleted every table in the database (including the schema tables) and
tried to regenerate the database.... I am experimenting with options to
try to get the table format I want......any way when I tried to regenerate I
got an error from schematool about creating an index... the error is
in the SQL itself (this SQL fails in oracle)... In looking what kodo is
trying to do it seems that it is creating an index using a name that is
already defined??? I am a little confused here... Here is the error:
The key point is the SQL:
CREATE INDEX LOANCOLLECTION_CREDITAGREEMENX ON
LOANCOLLECTION_CREDITAGREEMENX (JDOIDX)
This is not valid SQL... it did not occur the first time I created the DB,
but this was a gradual process adding a few tables at a time.
This time I was trying to create all the tables at the same time... I am not
sure why this should be different, but this is what I have
seen.... As I have said I know the problem (invalid SQL being generated),
but I do not know why it is happening. Any insight would
be appreciated.
C:\bcs\jdo\kodo-jdo-2.3.4\aqueduct>schematool -action refresh aqueduct.jdo
[ C:126452; T:2961925; D:12/2/02 11:34 AM ] connect: jdbc:oracle:thin:
@ds101.dev .global.chase.com:1521:aquadev9 (scott): 1 Refreshing schema for
type "class aqueduct.DealTeamMember" and all known subclas ses Refreshing
schema for type "class aqueduct.Currency" and all known subclasses
Refreshing schema for type "class aqueduct.User" and all known subclasses
Refreshing schema for type "class aqueduct.Tranche" and all known subclasses
CREATE INDEX LOANCOLLECTION_CREDITAGREEMENX ON
LOANCOLLECTION_CREDITAGREEMENX (JDOIDX) Exception in thread "main"
java.sql.SQLException: ORA-00955: name is already used by an existing object
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:169)
at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1405)
at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:822)
at
oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1602
at
oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1527)
at
oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java
:2045)
at
oracle.jdbc.driver.OracleStatement.doScrollStmtExecuteQuery(OracleStatement.
java:5462)
at
oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:756)
at
com.solarmetric.kodo.impl.jdbc.datasource.StatementImpl.executeUpdate(Statem
entImpl.java:78)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.executeSQL(SchemaTool.java:
1044)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.createTable(SchemaTool.java
:853)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refreshTable(SchemaTool.jav
a:503)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refreshTables(SchemaTool.ja
va:514)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refresh(SchemaTool.java:310
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refresh(SchemaTool.java:272
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1317)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1190)

Brian,
There are two common causes for this problem. First, you may be using
field names that result in index names that are too long. So, when we
truncate the names, we may be causing the index name that we're
generating to be the same as an existing index.
Second, if the index error happens while creating a join table for a
shared many-many relation, we could actually be trying to create the
same index multiple times.
We've done a good deal of work to resolve this problem and some other
schematool issues, but the schematool does not yet use that codebase.
Note that you can set the '-ignoreErrors' flag to true to temporarily
get around the problem.
-Patrick
Brian Smith wrote:
Hi:
I deleted every table in the database (including the schema tables) and
tried to regenerate the database.... I am experimenting with options to
try to get the table format I want......any way when I tried to
regenerate I
got an error from schematool about creating an index... the error is
in the SQL itself (this SQL fails in oracle)... In looking what kodo is
trying to do it seems that it is creating an index using a name that is
already defined??? I am a little confused here... Here is the error:
The key point is the SQL:
CREATE INDEX LOANCOLLECTION_CREDITAGREEMENX ON
LOANCOLLECTION_CREDITAGREEMENX (JDOIDX)
This is not valid SQL... it did not occur the first time I created the DB,
but this was a gradual process adding a few tables at a time.
This time I was trying to create all the tables at the same time... I
am not
sure why this should be different, but this is what I have
seen.... As I have said I know the problem (invalid SQL being generated),
but I do not know why it is happening. Any insight would
be appreciated.
C:\bcs\jdo\kodo-jdo-2.3.4\aqueduct>schematool -action refresh aqueduct.jdo
[ C:126452; T:2961925; D:12/2/02 11:34 AM ] connect: jdbc:oracle:thin:
@ds101.dev .global.chase.com:1521:aquadev9 (scott): 1 Refreshing
schema for
type "class aqueduct.DealTeamMember" and all known subclas ses Refreshing
schema for type "class aqueduct.Currency" and all known subclasses
Refreshing schema for type "class aqueduct.User" and all known subclasses
Refreshing schema for type "class aqueduct.Tranche" and all known
subclasses
CREATE INDEX LOANCOLLECTION_CREDITAGREEMENX ON
LOANCOLLECTION_CREDITAGREEMENX (JDOIDX) Exception in thread "main"
java.sql.SQLException: ORA-00955: name is already used by an existing
object
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:169)
at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1405)
at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:822)
at
oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1602
at
oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1527)
at
oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java
:2045)
at
oracle.jdbc.driver.OracleStatement.doScrollStmtExecuteQuery(OracleStatement.
java:5462)
at
oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:756)
at
com.solarmetric.kodo.impl.jdbc.datasource.StatementImpl.executeUpdate(Statem
entImpl.java:78)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.executeSQL(SchemaTool.java:
1044)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.createTable(SchemaTool.java
:853)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refreshTable(SchemaTool.jav
a:503)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refreshTables(SchemaTool.ja
va:514)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refresh(SchemaTool.java:310
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.refresh(SchemaTool.java:272
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1317)
at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1190)
Patrick Linskey [email protected]
SolarMetric Inc. http://www.solarmetric.com

Similar Messages

  • 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

  • Indexing Error F03E

    I'm experiencing an F03E indexing error on one specific mailbox, all of my others are indexing successfully. When I looked up the error it stated that the error was a generic memory error and closing and restarting the GroupWise client would fix the error. Well, this is on my daily indexing job that runs in the middle of the night so there is no client to open and close. I've tried running an indexing job specifically on the mailbox from the POA webpage, also ends with the F03E error. I haven't tried any GWCheck options on the mailbox as I don't know what I should check for. GroupWise is version 8 SP2, HP2 running on SLES 10 SP3, OES2 SP3. Any ideas for how to fix this? Thanks!

    You might consider running GWCheck with the ATTClip option to remove lost or orphaned attachments that may be causing the indexing errors.
    >>> marklar23<[email protected]> 4/10/2012 8:36 AM >>>
    I'm experiencing an F03E indexing error on one specific mailbox, all of
    my others are indexing successfully. When I looked up the error it
    stated that the error was a generic memory error and closing and
    restarting the GroupWise client would fix the error. Well, this is on
    my daily indexing job that runs in the middle of the night so there is
    no client to open and close. I've tried running an indexing job
    specifically on the mailbox from the POA webpage, also ends with the
    F03E error. I haven't tried any GWCheck options on the mailbox as I
    don't know what I should check for. GroupWise is version 8 SP2, HP2
    running on SLES 10 SP3, OES2 SP3. Any ideas for how to fix this?
    Thanks!
    marklar23
    marklar23's Profile: http://forums.novell.com/member.php?userid=5123
    View this thread: http://forums.novell.com/showthread.php?t=454465

Maybe you are looking for

  • RAW files not launching

    After a system crash I reinstalled Lightroom 3.6 and subscribed to Creative Cloud. Downloaded and installed without issue Bridge and Photoshop CS6 - 64bit Windows 7 system. Some (NOT ALL) of the RAW files (ORF) that I restored from a backup will not

  • My ipod won't open the apps when i click on them?

    My ipod won't open the apps when i click on them, i've restarted my ipod multiple of time, closed everything that's open, and they are still not working, but i get the notifications through, please help!

  • Project related PO document approval

    Dear All I am trying to create a project specific purchase requisition (PR) from Oracle Purchasing responsibility with project details in distribution. At the end of process I put tick in the checkbox for reserve and then forward the same using appro

  • HT4915 How do you reindex a corrupted match database? (ie songs appear with the wrong artist, album & title information)

    I am seeing that my songs of uploaded to match are corrupted in the database. The details of the tracks have the wrong title, album and artist. But if the song is in a playlist it still plays ok, just says it's a different track, artist etc. Guess I'

  • Verizon ran FIOS but claims they don't offer it here

    Does anyone know who I can contact to get Verizon to update their own Engineering records?!   I'm buying a new house and closing next week.  The current owner informed me that Verizon laid fiber optic lines over a year ago along the road in front of