Inconsistent  Full Text Search Results

I have built quite a comprehensive JavaHelp system, but seem to be having problems with the full text searching.
Eg Typeing in "Start" will bring back "Starting Transformation Manager" but not "StartsWith". Both HTML files seem to have the same structure.
I have been generating my help using the Helen software. I downloaded JavaHelp1.1.3 thisa fternoon and also generated the index database using jhindexer. This did not solve the problem.
Has anyone had a similar problem
Helen

Hello...
I am at the point where I too have this problem of text searching. I put in hex and only exact matches of "words" of hex are displayed. "hexidecimal" is not.
How did you get around this problem? Any hints or suggestions would be greatly appreciated.
Thank you.
Mike

Similar Messages

  • Full text search in Chinese Language not finding results

    We are translating one of our Webhelp projects into
    simplified chinese, and everything is working fine except full text
    search. We can type chinese characters into the search box but no
    results appear even though we have already translated a lot of the
    webhelp into chinese. Note that we have breadcrumbs, TOC and Index
    functioning correctly in chinese.
    The FAQ for Robohelp claims that FTS is supported in other
    languages but I am stuck - I can't figure out how to make it work.
    Any help would be greatly appreciated.

    There was some language stuff in those patches that I hoped
    would fix your problem, obviously not.
    I am not familiar with working with languages. Have you tried
    changing the language in Project Settings? Have you tried importing
    a couple of topics into a new project?
    Beyond that, hopefully someone with more relevant knowledge
    can help you.

  • Full-Text search is not working with PDF files - SQL Server 2012 64 bit

    Hi,
    We are in the process of storing PDF files in SQL Server 2012 with Full-Text search capability.
    I followed the steps as below and it works fine with word document but not for PDF files. I tried with PDF ifiler 11 & 9 and both are unsuccessful.
    Server/DB Level Settings:
    1)
    Enable FileStream
    2)
    Install Full-Text
    then restart
    3)
    Use [specific db]
    alter
    database [db name]
    add
    filegroup Files
    contains filestream;
    alter
    database [db name]
    add
    file (
    name = N'Files',
    filename =
    N'D:\SQL\DATA') to
    filegroup [Files];
    3)
    Database level
    Settings:
    FileStream:
    FileStream
    Directory name:
    [Set the name]
    FileStream
    non-transacted
    Access: [set Appropriate]
    3a)
    Add a
    datafile to DB
    with filestreamdata
    filetype.
    4)
    Share D:\SQL\DATA
    directory and
    add specific accounts
    with read/write
    access
    5)
    Give bulkadmin
    access to those
    specific accounts
    at server
    level
    6)
    From the
    page (link)
    download and
    install the *.pdf
    IFilter for
    FTS. Link:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    7)
    To the
    PATH global system
    variable add
    path to the
    catalog,
    where you installed
    the plugin.
    Default for
    this version is:
    C:\Program
    Files\Adobe\Adobe
    PDF iFilter 9
    for 64-bit
    platforms\bin
    8)
    From the
    page (link)
    download a
    FilterPackx64.exe
    and install
    it. Link:
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=20109
    9)
    Now from
    SSMS execute the following
    procedures:
    -sp_fulltext_service
    'load_os_resources',1
    -sp_fulltext_service
    'verify_signature', 0
    EXEC
    sp_fulltext_service
    'update_languages';
    -- update language list
    EXEC
    sp_fulltext_service
    'restart_all_fdhosts';
    -- restart daemon
    reconfigure
    with override;
    10)
    Restart the
    server
    11)
    select document_type,
    path from
    sys.fulltext_document_types
    where document_type
    = '.pdf'
    -select
    document_type,
    path from sys.fulltext_document_types
    where document_type
    = '.docx'
    12) Results are OK.
    Following is my Table /Index/ catalog script:
    CREATE
    TABLE dbo.DocumentFilesTest
    DocumentId  INT
    IDENTITY(1,1)
    NOT NULL
    PRIMARY KEY,
    AddDate datetime
    NOT NULL,
    Name nvarchar(50)
    NOT NULL,
    Extension nvarchar(10)
    NOT NULL,
    Description nvarchar(1000)
    NULL,
    FileStream_Id UNIQUEIDENTIFIER
    ROWGUIDCOL NOT
    NULL UNIQUE DEFAULT
    NEWSEQUENTIALID(),
    FileSource varbinary(MAX)
    FILESTREAM DEFAULT(0x)
    go
    --Add default add date for document   
    ALTER
    TABLE dbo.DocumentFilesTest
    ADD CONSTRAINT
    DF_DocumentFilesTest_AddDate
    DEFAULT sysdatetime()
    FOR AddDate
    EXEC
    sp_fulltext_database
    'enable'
    GO
    IF
    NOT EXISTS
    (SELECT
    TOP 1 1 FROM sys.fulltext_catalogs
    WHERE name
    = 'Ducuments_Catalog_test')
    BEGIN
    EXEC sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'create',
    'D:\SQL\PDFBlob';
    END
    --EXEC sp_fulltext_catalog 'Ducuments_Catalog_test', 'drop'
    DECLARE
    @indexName nvarchar(255)
    = (SELECT
    Top 1 i.Name
    from sys.indexes
    i
    Join sys.tables
    t on 
    i.object_id
    = t.object_id
    WHERE t.Name
    = 'DocumentFilesTest'
    AND i.type_desc
    = 'CLUSTERED')
    PRINT @indexName
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'create',
    'Ducuments_Catalog_test', 
    @indexName
    EXEC
    sp_fulltext_column
    'DocumentFilesTest',
    'FileSource',
    'add', 0,
    'Extension'
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'activate'
    EXEC
    sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'start_full'
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    ENABLE
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    SET CHANGE_TRACKING
    = AUTO
    ALTER
    FULLTEXT CATALOG
    Ducuments_Catalog_test REBUILD
    WITH ACCENT_SENSITIVITY=OFF;
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'pdf'
    'BOL12006553.pdf'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\BOL12006553.pdf',
    SINGLE_BLOB)
    AS BLOB;
    GO
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'docx'
    'test.docx'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\test.docx',
    SINGLE_BLOB)
    AS Document;
    GO
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'BILL')
    Returns nothing. it should come from PDF file
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'TEST')
    Returns from word document as follows:
    2           2014-06-04 10:11:41.393            test.docx docx           
    NULL   [BINARY Value]  [Binary Value]
    Any help is appreciated. Its been a long wait.
    Thanks,
    Vel
    Vel Thavasi

    Hello,
    Did you check the fulltext log files for more details about the errors. If the filter isn’t working, there should be errors in the error log file.
    The following thread is about similar issue, please refer to:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/69535dbc-c7ef-402d-a347-d3d3e4860d72/sql-server-2008-64bit-fulltext-indexing-pdf-not-working-cant-find-ifilter
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Database Services Engine Failed, SQL Server Replication Failed, Full Text Search Failed, Reporting Services Failed

    Hello,
    I am trying to install Microsoft SQL Server 2008 R2. I get the error bellow (Database Services Engine Failed, SQL Server Replication Failed, Full Text Search Failed, Reporting Services Failed). I already have a copy of SQL Server 2008 R2 on the machine.
    I want to create a new named instance of SQL Server for some software I'm installing.
    The error is below.
    Any help would be much appreciated, thanks!
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Exit code (Decimal):           -595541211
      Exit facility code:            1152
      Exit error code:               49957
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Start time:                    2014-02-06 09:14:09
      End time:                      2014-02-06 11:18:16
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.50.2500.0%26EvtType%3d0x44D4F75E%400xDC80C325
    Machine Properties:
      Machine name:                  BAHPBZ52TY
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered
      Sql Server 2008 R2   SQLEXPRESS           MSSQL10_50.SQLEXPRESS          Database Engine Services                
    1033                 Express Edition      10.50.1600.1    No        
      Sql Server 2008 R2                                                      
    Management Tools - Basic                 1033                 Express Edition     
    10.50.1600.1    No        
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      Installation location:         c:\c7ced2c86d6b9813b28186cc831c2054\x64\setup\
      Installation edition:          EXPRESS_ADVANCED
      Slipstream:                    True
      SP Level                       1
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      True
      AGTSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Disabled
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             
      CUSOURCE:                      
      ENABLERANU:                    True
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE,REPLICATION,FULLTEXT,RS,SSMS,SNAC_SDK,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  NT AUTHORITY\LOCAL SERVICE
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              c:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           c:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    aedt2bSQL
      INSTANCENAME:                  AEDT2BSQL
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     c:\c7ced2c86d6b9813b28186cc831c2054\PCUSOURCE
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 DefaultNativeMode
      RSSVCACCOUNT:                  NT AUTHORITY\NETWORK SERVICE
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           BAH\568385
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Full-Text Search
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Reporting Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Management Tools - Basic
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync Framework
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\SystemConfigurationCheck_Report.htm

    Hello,
    If you see error descriptioon it gives access denied so basically it is because of some access issue.I guess You must be using some domin account for installation make sure it is  added as local administrator also instead of using NT Authority network
    service  as SQL server service account use local system account .
    Below link would help
    http://serverfault.com/questions/212135/access-is-denied-error-installing-sql-server-2008-on-windows-7
    You can also browse to setup.exe file and RK on it and select run as administrator
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Full-text search not available after upgrade from SQL 2008 R2 Std to SQL 2012 Std

    We upgraded our production SQL Server from 2008 R2 Std to 2012 Std last week, and the installation logs show everything was successful, but now we are unable to do any searches against our full-text indexes.  The resulting error is as follows:
    "Full-Text Search is not installed, or a full-text component cannot be loaded."
    When executing the query "SELECT FULLTEXTSERVICEPROPERTY('ISFULLTEXTINSTALLED')", the result is "0".  The "Full-Text Daemon Launcher service is also running.  When running installation again to add the feature, it shows
    "Full-Text and Semantic Extractions for Search" as being installed and unavailable for selection in the list of features to add.  As a side note, we did the same upgrade in our identical QA environment before production and everything was successful
    and full-text searches are working correctly.  We have run the "Repair" routine in the SQL Installation Center and it did not correct the problem.
    The full-text catalogs still appear when browsing through the GUI in SSMS or querying sys.fulltext_indexes and sys.fulltext_index_columns.  It is not possible to view the properties of the catalog in SSMS, though, as the GUI throws an error and an empty
    dialog box is shown.  Any other thoughts?
    Thanks,
    AJ

    I have no idea what is going, but assuming that it is a little pressing to get this fix, I think the best path in this case is to open a case with Microsoft.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Executing a full-text search using KM APIs

    Hello,
    I'm doing a KM Folder search using KM APIs. The code looks similar to this
    =====================================================
    IGenericQueryFactory queryFactory = GenericQueryFactory.getInstance();
         IQueryBuilder queryBldr = queryFactory.getQueryBuilder();
         IPropertyName ipn = new PropertyName("http://sapportals.com/xmlns/cm", "lang");
         IQueryExpression queryExpr =
              queryBldr.like(ipn, language.toLowerCase());
         IGenericQuery query = queryFactory.toGenericQuery(queryExpr);
         IResourceList result = query.execute(
         collection, Integer.MAX_VALUE,7,false);
    ======================================================
    Issue: How can I execute a full-text search using these APIs. 
    i.e. If the keyword exists in the body of the document, the search should return that document.
    Any help on this would be much appreciated.
    Thanks,
    Harman

    Thanks for your helpful answers.
    So, which APIs should I use to accomplish my goal?  I need to search for custom KM attributes, AND the body of the document.
    We are currently running EP6 SP2.
    Should I use the IFederatedSearch API.
    Thanks,
    Harman

  • Preparing Full Text Search(TREX)

    Dear Guru.
    We have installed a search engine such as TREX and RFC Connection is completed. I have entered the document class DMS_PCD1 in T. code (SKPR07) and click the button in “Test search” but no result found.
    I have also checked the full text search through cv04n but I found the error (Technical error with document full text search, contact system admin).
    Kindly also send me the creating index step by step for DMS.
    Need your help in urgent basis.
    Best Regards,
    Umar Farooq

    I'm sorry to recheck but I have to be sure about this.
    What you are telling me is that, if a user doesn't have read permissions for a given document in SAP ECC Document Management System  (documents stored in transactions such as CV01N) results won't show up in the TREX search?

  • Using Punctuations in Full Text Searches

    Hi, I'm having a bit of trouble implementing full text search effectively in regards to punctuations.
    In my thesaurus file I have something along the lines of
    <expansion>
    <sub>intl</sub>
    <sub>int'l</sub>
    <sub>international</sub>
    </expansion>
    and when I run the query 
    select * from sys.dm_fts_parser('Formsof(freetext,"international")',1033,null,0)
    it show's that it is included
    international's
    internationals
    internationals'
    international
    intl
    int'l
    However when I do end up running the query using Contains, it ignores everything that contains int'l and only returns the results of the other matches.

    I am moving it to Search.
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • TREX Full text search in ITSM 7.1

    Hello,
    I use  Full-Text Search with TREX - SAP IT Service Management on SAP Solution Manager - SCN Wiki
    documentation for setup TREX in SAP Solution Manager 7.1 for full trex search. After complete all steps, in UI part i have TREX error Index does not exist; index=saf:sol 001 ka
    when i start transaction CRMC_SAF_TOOL and do all step for configuration, result
    if you see (SDB, SDB_PROBLEMS, SDB_ATTACHMENT, SDB_SOLUTION) not index generated.
    BR, Baha

    Dear  NAG
    For text search you have activate TREX Server
    follow the steps
    Set TREX
    A:- Transaction: SRMO
    Install TREX , and create RFC destination to connect to
    TREX.
    B:- Transaction: SKPR06
    Check the flag to Document Area "DMS" to utilize this document area for
    document search.
    For Indexing
    A: Transaction: SE38
    Run the report program "RSTIRIDX_REINDEX" to create Index. 
    Also, run the report program "RSTIRIDX" to create Index.
    Set mime type for the text search
    A: SPRO --
    Cross-Application Components > Document Management System > General
    Data > Settings for Storage Systems > Create MIME types for full
    text search,
    Enter MIME type like
    "application/msword",
    "application/pdf".
    Retrive document via Test Search
    A: Then, test retrieval document search using
    Transaction: SKPR07.
    Enter Document Class "DMS_PCD1", Language "EN", Document Class "DMS",
    and try "TEST search".
    Regards
    Tushar Dave

  • Full-text search in ucm10g

    hi all,
    I am using ucm10gr3 plus wc11.1.1.3.
    I checked in a content with both Primary File and Alternate File , I used webcenter search taskflow to search word in alternate file, but search result show me the Primary File, how to resolve this issue?
    I also opened a case in webcenter services.
    Best regards
    Edited by: user1411365 on Aug 8, 2010 1:07 AM

    Hi,
    According to Metalink note 871388.1: " The weblayout file is what typically gets indexed for full text searching". it is possible to set some parameters in order the native file to be indexed but the note says nothing about indexing the alternative file.
    Regards

  • Full-text search in ucm10g with wc search taskflow

    hi all,
    I am using wc11.1.13 plus ucm10gr3.
    I checked in a content with both Primary File and Alternate File , I used webcenter search taskflow to search word in alternate file, but search result show me the Primary File, how to resolve this issue?
    I also opened a case in ucm forum.
    Best regards

    Hi Atrsams,
    According to your description, you want to implement Full Text Search in Analysis Services Cube, right? Base on my research, there is no such a functionally to achieve Full Text Search in Analysis Services currently. And it seems that there is no any
    solution or workaround for it. I recommend you to submit this at
    https://connect.microsoft.com/SQLServer/ So that the product team can consider to solve it in the next SQL Server version. Your feedback is valuable for us to improve our products and increase the level
    of service provided.
    Thanks for your understanding.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Full Text Search In UCM

    Currently we are looking at the integration of UCM and Webcenter. Can u please guide us in doing a full text search using UCM.
    The steps we followed for full text search is
    1. Stopped the Content Server service.
    2. On the Content Server's file system, navigated to search folder in Content Server Installed Path and altered activeindex.hda with the entry change verity.1 to IdcColl1
    3. Renamed all files under the following locations:
    CS\search\lock
    CSsearch\update
    CS\search\rebuild
    4. Started the Content Server service
    5. Logged into CS and rebuilt the indexes from repository manager and restarted the CS from Admin Server Page
    Please let me know if any of the steps is wrong or any more components need to be added.
    We get no errors on doing fulltextsearch but we do not any result (displays "found 0 potential items").
    Thanks in advance!

    When checked the CS Log after changing metadata to fulltext and rebuilding indexes under collection rebuild cycle
    helperservice: data exception in INDEXERSTATE.RECORDWEBCHANGE_SUB IndexerState.IindexerState Unable to find query 'IndexerState.IindexerState'. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !$helperservice: data exception in INDEXERSTATE.RECORDWEBCHANGE_SUB IndexerState.IindexerState !csUnableToFindQuery,IndexerState.IindexerState
    intradoc.data.DataException: !csUnableToFindQuery,IndexerState.IindexerState
         at intradoc.jdbc.JdbcConnection.getQueryDefAllowMissing(JdbcConnection.java:390)
         at intradoc.jdbc.JdbcConnection.getQueryDef(JdbcConnection.java:369)
         at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:635)
         at helper.HelperUtils.execute(HelperUtils.java:1527)
         at helper.HelperService.doAction(HelperService.java:692)
         at helper.HelperService.doActions10g(HelperService.java:383)
         at helper.HelperService.doActions(HelperService.java:119)
         at helper.HelperUtils.executeService(HelperUtils.java:3185)
         at helper.HelperUtils.executeService(HelperUtils.java:3031)
         at helper.HelperUtils.executeService(HelperUtils.java:3027)
         at helper.HelperUtils.executeService(HelperUtils.java:3023)
         at helper.HelperFilters.doFilter(HelperFilters.java:1287)
         at intradoc.shared.PluginFilters.filter(PluginFilters.java:92)
         at intradoc.indexer.IndexerBulkLoader.createBulkLoad(IndexerBulkLoader.java:333)
         at intradoc.indexer.IndexerBulkLoader.doWork(IndexerBulkLoader.java:164)
         at intradoc.indexer.Indexer.doIndexing(Indexer.java:431)
         at intradoc.indexer.Indexer.buildIndex(Indexer.java:340)
         at intradoc.server.IndexerMonitor.doIndexing(IndexerMonitor.java:1012)
         at intradoc.server.IndexerMonitor$4.run(IndexerMonitor.java:832)
    Thanks!

  • Full text search in a dynamic table

    Hi all,
    Can any one tell me how to do a full text search in a dynamic(ie. always have INSERT or DELETE action) table? I created a context index on the column which data type is LONG. But I can't get search results for those records that I inserted new data after Creating index.
    Thanks a lot!

    David:
    I want to know if Oracle Context Option to need run over Oracle Application Server for to work search over multiple tables???
    Exist some method for this (Context) run without to use Oracle Application Server???
    select * from table_name where
    contains(column_name1, 'keywords')>0 AND
    contains(column_name2, 'keywords')>0However, using the Concatenated Datastore to create one index that has all the columns to be searched as sections will get better performance, since your query then only needs to use one contains statement across one index.
    select * from table_name where
    contains(indexed_column_name,
    '(keywords WITHIN section_name1) AND
    (keywords WITHIN section_name2) AND
    keyords')>0Note: The last keyword in this query is so you search the indexed column as well, which is not a section. You could also create a dummy column to create the index on, and make all columns to search sections of that.
    Cheers
    David<HR></BLOCKQUOTE>
    null

  • Full-text search broken in Simplified Chinese?

    Hello,
    Can anyone confirm whether full-text search works in
    Simplified Chinese CHM files produced with Robohelp 7? It looks to
    me like the answer is no. When I compile a help system that has
    been localized into Chinese, the compiler produces this error:
    Generating full-text search data...
    HHC5008: Error:
    An unknown error occurred while creating the index.
    There's no mention of this error in any of Adobe's support
    documents. Googling "HHC5008" and "unknown error" finds one page
    (in Japanese) that indicates that the problem stems from using a
    binary index. Robohelp will not let me disable the binary index
    since I'm using an HHK.
    Oddly, if I change the language of my otherwise unmodified
    source (English) project to Simplified Chinese, the same error
    occurs.
    The Robohelp Readme lists as a known issue "Search not
    working for Unicode (Hiragana) characters on RoboHelp for HTML
    (RHT)." This problem is perhaps related, but not identical to the
    one I'm having. It would also appear that the statement in the FAQ,
    "Full text search is also operational in any of the languages," is
    false.
    I'm evaluating RH7, which will not be useful to me if this
    bug persists.
    Any help would be much appreciated. Thanks.

    Peter,
    Thank you very much for the quick response (on Christmas Eve,
    no less). It appears to me that the search and index issues are the
    same, or at least that they're very closely related. Again, the
    error message sequence is as follows:
    Generating full-text search data...
    HHC5008: Error:
    An unknown error occurred while creating the index.
    The index itself generates correctly (despite the error
    message); the problem is with the Search tab.
    I can reproduce the problem with the "Clownfish School"
    sample project. If I open the project, change its output format to
    Microsoft HTML Help, and compile, the search function in the
    resulting CHM works fine. If I change the project language to
    Simplified Chinese, I get the same error I reported originally with
    my actual project.
    So at this point it appears that either the problem is, as
    you suggest, local to my installation (I've tested it on three
    different machines, though, so this seems unlikely) or with
    Robohelp itself.
    I would appreciate any additional suggestions. Thanks
    again.

  • UCM Full-Text Search

    Hi,
    I have a problem with UCM (10gR4) full-text search. I does not return any results.
    In the Repository Manager applet, Indexer tab, I have run the indexer (under Collection Rebuild Cycle) and waited until it finished. It said that it has indexed 5424 files as full-text.
    Under *"Configuration for Stellent"*, I have the following data:
    Search Engine:: DATABASE.FULLTEXT
    Index Engine Name: DATABASE.FULLTEXT
    Active Index: IdcColl1
    So, I think everything looks fine. Does anybody know why it doesn't work?
    Thanks in advance

    During installation have to executed fulltextindex.sql that is available under oracle\ucm\server\database\oracle\admin folder?
    If not kindly exectute it..

Maybe you are looking for

  • Material Ledger : Actual Cost settlement to Consumption Accounts

    Dear CO Experts, We are aware that when we run CKMLCP, all variances (in the Price Diff GL Account) due to Material Prices flutuation, diff in Standard & Actual Cost of Production, etc. would finally get settled to Consumption or Stock Account in its

  • Upload photo in Who's who

    Hello everyone, Can you advise me about the procedure of making "upload photo" option available in the who's who's iView. We are using Netweaver 7.0 sp14. I have looked into the "Content Provided by SAP". But it doesn't show up anything about the pho

  • Parameter confusion in portlets

    Hi I was developed two Java portlets in JDeveloper 9.0.2, using JSP and BC4J. Both portlets displays data in a browse form (Next, Prevous link). These two portlets are displayed in the same portal page (Portal 9.0.2). Scenario: When I click the Next

  • Why are ACR PSD files 10-20 percent larger than the same file resaved in PSD?

    Why are ACR > PSD files 10-20 percent larger than the same file resaved in PSD? I posted this many years ago and never found an answer. Now that my drives fill up quicker, I thought I might chase this question a little bit further. Same .CR2 saved wi

  • Web intelligence/desktop intelligence

    Hi guys i would like to know the difference between desktop intelligence and web intelligence.When should we go for desktop and webi  given a senerio.(i am new to BO). Regards, jiyyana