ActiveIndex 'databasesearch.1 '.

Hello

After you restart the server, I have the following in my webcenter content error

AlertDraw the attention of
  • ActiveIndex 'databasesearch.1' is invalid in the engine of the indexer ' DATABASE. TEXT "." Please redo your collection.

Note: is my oracle 11g database and I have tried to replace 'databasesearch.1' with 'index1' and then restarted the server of the University Complutense of Madrid, but it backs ' nt work... same error

Hello

Please check the forum below.

error of the University Complutense of Madrid ActiveIndex 'databasesearch.1' is invalid in the engine of the indexer ' DATABASE. TEXT "." Please rebuild your collection

To perform a reconstruction of the collection complete:

1. open the Repository Manager applet. This can be done using the web interface using the cmdlets Administration/Admin or by opening the applet directly.

2. Select the tab of the indexer.

3. in the section Cycle to rebuild half of Collection, lower, press the 'Start' button to rebuild the collection.

At this point, if the SearchIndexerEngineName is OracleTextSearch, a popup will ask you if you want to run as 'Fast rebuild.' In most cases, it is the regeneration you want to do with OracleTextSearch.  The process of reconstruction rapid will be run as soon as a regeneration full and add or delete data in the existing table in the database.

A complete collection of reconstruction requires a re-index every piece of content published on the content server.

Thank you

Amey

Tags: Fusion Middleware

Similar Questions

  • Research of collection build error

    Get after the message alert - "ActiveIndex 'databasesearch.1' is invalid in the indexer"ORACLETEXTSEARCH"engine. Please redo your collection. "
    Kindly help where configuration turned bad.

    I configure the post-installation of research guidance package full text. as part of the standard research facility has been set up just for the metadata.

    Hello

    CTXSYS account on the database.

    Thank you
    Srinath

  • Switch layers Script Question

    Hi I have a small script here which someone of these online forums there is too long... it was Christmas? Whatever it is, this script is fantastic and brings up a submenu for the documents. When the menu appears, it displays a list of all the open documents in Photoshop. (Actually, I modified this script so there is no switch documents instead of copy the active layer to another document... somehow I managed with very basic knowledge, I )

    The selection of default document (the name of the document that is highlighted in the menu) when the list is opened is '0 '.

    I am looking for a way to recover the highlighted selection to take into account the document assets instead of '0 '.

    I think it's somewhere in this line of code:

    victory. NewList.selection = 0;

    and I tried to change the value 0 to "actLay" and also "activeLayer" but he throws me an error message. Is there a way to get the current document as the selection? Here's the code...

    
    
    
    var aDoc = app.activeDocument; 
    var AllDocs = app.documents; 
    var actLay = aDoc.activeLayer; 
    
    if (AllDocs.length > 1) { 
    var itemDoc = null; 
    
    
    var win = new Window("dialog","Switch Documents"); 
    this.windowRef = win; 
    win.Txt1 = win.add ("statictext", undefined, "Switch to which document?"); 
    win.NewList=win.add ("dropdownlist", undefined) 
    for (var m = 0; m < AllDocs.length; m++) { 
    win.NewList.add("item", AllDocs[m].name)  
    } 
    win.NewList.selection = 0; 
    itemDoc = win.NewList.selection.actLay; 
    
    win.cancelBtn = win.add("button", undefined, "Switch"); 
    
    
    win.cancelElement = win.cancelBtn; 
    
    
    
    win.NewList.onChange= function () { 
        itemDoc = win.NewList.selection.index; 
        return itemDoc; 
        } 
    
    win.show(); 
    
    app.activeDocument = app.documents[itemDoc]; 
    
    app.refresh(); 
    } 
    
    

    Here is your code of origin with only slight changes:

    Added a var to contain the index of activeDocument.

    Added if statement to set the variable above.

    Added a line to set the dropdownlist selection.

    You should also start the scripts with the target application. In this case: #target photoshop

    #target photoshop
        var aDoc = app.activeDocument;
        var AllDocs = app.documents;
        var actLay = aDoc.activeLayer;
        var activeIndex;//add var to hold activeDocument's index
    
        if (AllDocs.length > 1) {
        var itemDoc = null;  
    
        var win = new Window("dialog","Switch Documents");
        this.windowRef = win;
        win.Txt1 = win.add ("statictext", undefined, "Switch to which document?");
        win.NewList=win.add ("dropdownlist", undefined)
        for (var m = 0; m < AllDocs.length; m++) {
        win.NewList.add("item", AllDocs[m].name)
        if(AllDocs[m].name == aDoc.name){activeIndex = m}//set activeIndex if activeDocument name matches current doc in list
        }
    var docR = activeDocument
    
        win.NewList.selection = activeIndex;   //Set selection for dropdownlist
    
        //itemDoc = win.NewList.selection.actLay;
    
        win.cancelBtn = win.add("button", undefined, "Switch");  
    
        win.cancelElement = win.cancelBtn;  
    
        win.NewList.onChange= function () {
            itemDoc = win.NewList.selection.index;
            return itemDoc;
            }  
    
        win.show();  
    
        app.activeDocument = app.documents[itemDoc];  
    
        app.refresh();
        }
    

Maybe you are looking for