APEX 3.0 - Online Help Search Error on Text Index

When I click on Help and then Find and attempt to search the online help the following error is returned
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: Oracle Text error: DRG-10700: preference does not exist: CTXSYS.DEFAULT_LEXER
Error creating online help index.
We are running:
Application Express 3.0 on Oracle 10g Enterprise Edition Rel 10.2.0.3.0 - 64 bit with partitioning, OLAP and Data Mining Options
Message was edited by:
CFrishett

Hi CFrishett,
Try searching the forum for DRG-10700. It sounds like there is a problem with your Oracle Text installation.
Regards Pete

Similar Messages

  • Error synchronizing text index in oracle 10g

    Hi,
    I am getting errors while trying to synchronize the text index on a xmltype table.
    SQL> exec ctx_ddl.sync_index('CTX_INDEX');
    BEGIN ctx_ddl.sync_index('CTX_INDEX'); END;
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in drsxsopen
    ORA-00904: "BASE"."SYS_NC00162$"."GETCLOBVAL": invalid identifier
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 539
    ORA-06512: at line 1
    I will appreciate it if someone can help me figure out a solution.
    (Oracle database version - 10.2.0.1)
    Thanks,
    Uma

    Testing with 10.2.0.2.0 I do not see the problem. Is there something significanly different between your environement and the one in this testcase
    SQL*Plus: Release 10.2.0.2.0 - Production on Tue Feb 28 16:16:54 2006
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> spool createTextIndex.log
    SQL> --
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> desc ENTRY_TABLE
    Name                                      Null?    Type
    TABLE of SYS.XMLTYPE(XMLSchema "http://www.uniprot.org/support/docs/uniprot.xsd" Element "entry") STORAGE Object-relational TYPE "ENTRY_T"
    SQL> /
    SP2-0103: Nothing in SQL buffer to run.
    SQL> create index UNIPROT_FULL_TEXT
      2      on ENTRY_TABLE e (object_value)
      3         indextype is ctxsys.context
      4         parameters ( 'section group ctxsys.NULL_SECTION_GROUP' )
      5  /
    Index created.
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.2.0.2.0 - Production on Tue Feb 28 16:16:58 2006
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> spool loadFile_&3..log
    SQL> set trimspool on
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> set timing on
    SQL> --
    SQL> declare
      2    result boolean;
      3  begin
      4    result := dbms_xdb.createResource('/home/&1/&3',
      5                                      bfilename(USER,'&3'),nls_charset_id('AL32UTF8'));
      6  end;
      7  /
    old   4:   result := dbms_xdb.createResource('/home/&1/&3',
    new   4:   result := dbms_xdb.createResource('/home/BASE/testcase.xml',
    old   5:                                     bfilename(USER,'&3'),nls_charset_id('AL32UTF8'));
    new   5:                                     bfilename(USER,'testcase.xml'),nls_charset_id('AL32UTF8'));
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.70
    SQL> commit
      2  /
    Commit complete.
    Elapsed: 00:00:00.08
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.2.0.2.0 - Production on Tue Feb 28 16:16:59 2006
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> spool testcase.log
    SQL> --
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> --
    SQL> -- Testcase code here
    SQL> --
    SQL> set trimspool on
    SQL> set autotrace on explain
    SQL> set timing on
    SQL> set pages 0 lines 140 long 100000
    SQL> --
    SQL> select count(*)
      2    from ENTRY_TABLE
      3  /
             1
    Elapsed: 00:00:00.21
    Execution Plan
    Plan hash value: 4248071425
    | Id  | Operation          | Name        | Rows  | Bytes | Cost (%CPU)| Time    |
    |   0 | SELECT STATEMENT   |             |     1 |    20 |     3   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE    |             |     1 |    20 |            |         |
    |*  2 |   TABLE ACCESS FULL| ENTRY_TABLE |     1 |    20 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter(SYS_CHECKACL("ACLOID","OWNERID",xmltype('<privilege
                  xmlns="http://xmlns.oracle.com/xdb/acl.xsd"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://xmlns.oracle.com/xdb/acl.xsd
                  http://xmlns.oracle.com/xdb/acl.xsd DAV:http://xmlns.oracle.com/xdb/dav.xs
                  d"><read-properties/><read-contents/></privilege>'))=1)
    Note
       - dynamic sampling used for this statement
    SQL> select object_value
      2    from ENTRY_TABLE
      3   where existsNode (OBJECT_value, '/entry[accession/text()="P19084"]','xmlns="http://uniprot.org/uniprot"')>0
      4  /
    *** Object defn.s out of sync w/ data
    ***<entry xmlns="http://uniprot.org/uniprot" dataset="Swiss-Prot" created="1990-11-01" modified="2006-02-07" version="45">
      <accession>P19084</accession>
      <name>11S3_HELAN</name>
    PLTLWANRYQLSREEAQQLKFSQRETVLFAPSFSRGQGIRASR
    </sequence>
    </entry>
    Elapsed: 00:00:03.13
    Execution Plan
    Plan hash value: 4171466134
    | Id  | Operation                    | Name           | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |                |     1 | 10115 |   804  (1)| 00:00:10 |
    |   1 |  NESTED LOOPS                |                |     1 | 10115 |   804  (1)| 00:00:10 |
    |   2 |   SORT UNIQUE                |                |     1 |  2016 |   802  (0)| 00:00:10 |
    |*  3 |    INDEX FAST FULL SCAN      | ACCESSION_DATA |     1 |  2016 |   802  (0)| 00:00:10 |
    |*  4 |   TABLE ACCESS BY INDEX ROWID| ENTRY_TABLE    |     1 |  8099 |     1  (0)| 00:00:01 |
    |*  5 |    INDEX UNIQUE SCAN         | ACCESSION_LIST |     1 |       |     0  (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - filter("ACCESSION_TABLE"."SYS_XDBBODY$"='P19084')
       4 - filter(SYS_CHECKACL("ACLOID","OWNERID",xmltype('<privilege
                  xmlns="http://xmlns.oracle.com/xdb/acl.xsd"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://xmlns.oracle.com/xdb/acl.xsd
                  http://xmlns.oracle.com/xdb/acl.xsd DAV:http://xmlns.oracle.com/xdb/dav.xsd"><read-prop
                  erties/><read-contents/></privilege>'))=1)
       5 - access("NESTED_TABLE_ID"="ENTRY_TABLE"."SYS_NC0001100012$")
    Note
       - dynamic sampling used for this statement
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.2.0.2.0 - Production on Tue Feb 28 16:17:03 2006
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> spool syncTextIndex.log
    SQL> --
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> exec ctx_ddl.sync_index('UNIPROT_FULL_TEXT')
    PL/SQL procedure successfully completed.
    SQL> /
    SP2-0103: Nothing in SQL buffer to run.
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    bash-2.05b$Message was edited by:
    mdrake

  • Help with creating oracle text index on 2 columns with partial html data

    Hi,
    I need to create an oracle text index on 2 columns.
    TITLE - varchar(255) = contains plain text data
    DESCRIPTION - CLOB = contains partial HTML data
    This is what I created.
    begin
    ctx_ddl.create_preference ('Title_Description_Pref', 'MULTI_COLUMN_DATASTORE');
    ctx_ddl.set_attribute('Title_Description_Pref', 'columns', 'TITLE, DESCRIPTION');
    end;
    begin
    ctx_ddl.create_preference ('bid_lexer', 'BASIC_LEXER');
    ctx_ddl.set_attribute('bid_lexer', 'index_stems', 'ENGLISH');
    ctx_ddl.create_section_group('htmgroup', 'HTML_SECTION_GROUP');
    end;
    create index Bid_Title_Index on Bid(title) indextype is ctxsys.context parameters ('LEXER bid_lexer sync (every "sysdate+(1/24)")');
    create index Bid_Title_Desc_Index on Bid(description) indextype is ctxsys.context parameters ('LEXER bid_lexer DATASTORE Title_Description_Pref sync (every "sysdate+(1/24)") filter ctxsys.null_filter section group htmgroup');
    The problem is when I do a CONTAINS(description, '$(auction)')>0. I get results where the descriptions have the "auction" word (which is correct). But, the results also returned rows where the search word is inside an IMG tag. e.g. <img src="http://auction.de/120483" alt="Auction Logo"/>.
    What I would like is to exclude rows where the search word is inside HTML tag attributes, results expected are rows having <a>Auction</a> or <p>For Auction</p> ... etc. Basically stripping the html tags and leave the text contents.
    I'd appreciate some input.
    Thanks,
    Amiel

    Hi,
    I need to create an oracle text index on 2 columns.
    TITLE - varchar(255) = contains plain text data
    DESCRIPTION - CLOB = contains partial HTML data
    This is what I created.
    begin
    ctx_ddl.create_preference ('Title_Description_Pref', 'MULTI_COLUMN_DATASTORE');
    ctx_ddl.set_attribute('Title_Description_Pref', 'columns', 'TITLE, DESCRIPTION');
    end;
    begin
    ctx_ddl.create_preference ('bid_lexer', 'BASIC_LEXER');
    ctx_ddl.set_attribute('bid_lexer', 'index_stems', 'ENGLISH');
    ctx_ddl.create_section_group('htmgroup', 'HTML_SECTION_GROUP');
    end;
    create index Bid_Title_Index on Bid(title) indextype is ctxsys.context parameters ('LEXER bid_lexer sync (every "sysdate+(1/24)")');
    create index Bid_Title_Desc_Index on Bid(description) indextype is ctxsys.context parameters ('LEXER bid_lexer DATASTORE Title_Description_Pref sync (every "sysdate+(1/24)") filter ctxsys.null_filter section group htmgroup');
    The problem is when I do a CONTAINS(description, '$(auction)')>0. I get results where the descriptions have the "auction" word (which is correct). But, the results also returned rows where the search word is inside an IMG tag. e.g. <img src="http://auction.de/120483" alt="Auction Logo"/>.
    What I would like is to exclude rows where the search word is inside HTML tag attributes, results expected are rows having <a>Auction</a> or <p>For Auction</p> ... etc. Basically stripping the html tags and leave the text contents.
    I'd appreciate some input.
    Thanks,
    Amiel

  • Error creating text index

    Hi,
    i'm using ORACLE 8.1.5 Standard edition
    and i've tried to execute the following
    statements, but an error occured at the
    create index statement.
    Anyone knows why?
    SQL> create table docs (id number primary key, text varchar2(80));
    Tabelle wurde angelegt.
    SQL> insert into docs values ( 1, 'first document');
    1 Zeile wurde erstellt.
    SQL> insert into docs values ( 2, 'second document');
    1 Zeile wurde erstellt.
    SQL> commit;
    Transaktion mit COMMIT abgeschlossen.
    SQL> create index doc_index on docs(text) indextype is ctxsys.context;
    create index doc_index on docs(text) indextype is ctxsys.context
    FEHLER in Zeile 1:
    ORA-29855: Fehler bei Ausf|hrung der Routine ODCIINDEXCREATE
    ORA-20000: ConText error:
    DRG-11422: Initialisierung der linguistischen Dienste schlug fehl
    DRG-00100: Interner Fehler; Argumente: [52100],[drxf.c],[707],[gxtopen],[0]
    ORA-06512: in "CTXSYS.DRUE", Zeile 122
    ORA-06512: in "CTXSYS.TEXTINDEXMETHODS", Zeile 34
    ORA-06512: in Zeile 1

    I fixed the same proble today.
    Set your client NLS_LANG to the same value as on your database. your database might run with "NLS_LANG=american_america.we8iso8859p1".
    If you want to use german stopwords etc. lokk at the script "drdefd.sql". Replace all "DEFAULT_" settings with your keyword (e.g. "GERMAN_"). Run the script. Now you can create a index with german parameters:
    create index a on b(c)
    indextype is ctxsys.context
    parameters ('lexer ctxsys.german_lexer stoplist ctxsys.german_stoplist wordlist ctxsys.german_wordlist')
    null

  • FIND -error in HTMLDB ONLINE HELP

    Hi,
    When i click on "Help" link in HTMLDB development environment i am able to see the online help page. the "Contents" and "Index" hyperlink are working but when i click on "Find" i get the following error:
    Error creating online help index.
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: Oracle Text error: DRG-10700: preference does not exist: CTXSYS.DEFAULT_LEXER
    But Oracle Text and Oracle XML are properly installed in the database and they are valid.
    Can someone help please,
    Thanks,
    Philip.

    Hi,
    there should be a problem in your context-install.
    If Oracle TEXT is installed, perhaps only the default language install is missing:
    run as ctxsys
    @drdefXX for us: @drdefus for german:@drdefd
    in the documentation for install htmldb2.0 I assume is an error:
    c:\> sqlplus sys/SYS_password as sysdba
    SQL> @c:\oracle\product\10.2.0\db_1\ctx\admin\defaults\drdefus.sql
    you have to run your @drdefXX as CTXSYS not as "SYS AS SYSDBA"
    metalink.oracle.com:->Note:280713.1
    I have made a forum-entry at metalink too, you will find both if searching in metalink for: catctx.

  • Accessing Contents & Index online Help

    I'm trying to figure out what needs to be included with the
    software product when I've created a project in WebHelp using
    RoboHelp HTML X5.0.1. However, I can't always get to RoboHelp's
    online help by clicking Contents and Index. Is there something I'm
    not doing correctly from my end?
    Thanks.

    You need to give the developers everything that is in the
    folder to which you generated. That is defined in the first page of
    the wizard. Sometimes developers will ask if everything is needed
    to which the stock answer is "only if you want it to work".
    RH first tries to access online help. If it cannot, it should
    open a local version. If that is not happening, go to Tools |
    Options and select Use Offline Help.

  • Error in creating index on text BFILE

    Hi,
    I have put data into a table using SQL* Loader. The BFILE exist (I've tested it with a procedure). I've no errors during text indexing but when a look into the view ctx_user_index_errors, I have the following :
    DRG-11101: failed to open file \drgit3
    So, my index doesn't work.
    Any ideas ?

    ORACLE_HOME must be set. Otherwise ctxhx.exe used during indexing won4t work.
    null

  • Multiple errors in Apex 3.1.1 help (EBS mod_plsql issue?)

    Hello everybody,
    I am having a couple of problems with the online help in Apex and I cannot figure out how to solve them.
    First problem:
    Whenever I open the help from the Application Builder I get an error "Forbidden You don't have permission to access /i/doc/bldr_hm.htm on this server", but if then I start browsing the help index, all the pages show without errors. Also if I try to access directly in my browser the page indicated in the error above, the page shows fine. I get the same behaviour also when I select the "2 Day Developer" guide in the select list, that is the first page accessed gives a Forbidden error, but all the pages I access after that are working fine.
    Second problem:
    Whenever I click on the Find link, Apex outputs the following error:
    ORA-31011: XML parsing failed ORA-19202: Error occurred in XML processing
    LPX-00104: Warning: element "HTML" is not declared in the DTD Error at line 2
    Error creating online help index.I browsed the forum for this kind of error, but I found it only mentioned together with Web Services. The error seems to show that an HTML document is fetched instead of an XML one and I think it may be connected to the first problem (who knows, maybe the indexing routine is getting a forbidden error instead of the expected XML file).
    In the Mod_PlSql logs I see error messages like
    10.200.95.2 - - [04/Jun/2008:14:19:26 +0200] "GET /i/doc/bldr_hm.htm HTTP/1.1" 403 227and also
    [Wed Jun  4 14:19:26 2008] [error] [client 10.200.95.2] client denied by server configuration: /tszo/comn/portal/tszo_erp01/iI am using Apex version 3.1.1 on a 9.2.0.8.0 database and as the HTTP server I am using an Oracle 9i Application server from an Oracle E-Business Suite 11.5.10.2 installation. The error happens both with 3.1 and 3.1.1 Apex versions.
    It may be very well a mod_plsql configuration issue, but I don't know what may be causing the problem and why it's happening only the first time I access the help page.
    Is there someone able to shed some light on this issue?
    Thanks a lot,
    Paolo

    Hello everybody,
    our great Apps DBA Ivo Zekhuis solved the issue, so I would like to report the solution for others that may encounter the same problem.
    He just added the following line to the DAD for apex in file $IAS_ORACLE_HOME/Apache/modplsql/cfg/wdbsvr.app
    cgi_env_list=SERVER_NAME=our.server.name,REQUEST_PROTOCOL=http,SERVER_PORT=8000,HOST=our.server.name:8000and it solved the problem. As a nice side effect, this change also solved another issue that we were having with flash charts not working.
    I want to remember that in our case Apex is installed in an E-Business Suite 11i environment, using the main application server as the Apex web server.
    Thanks again, Ivo!
    Paolo

  • Error 404 when trying to access online Help in EPM 11.1.2.3

    HI All,
           I am trying to access on line help (pressing F1) in EPM 11.1.2.3 but I'm getting the folowing error :
    404 - File or directory not found.
    The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.
           Also I'm getting this error when try to install some client tool such as HFM Client from Tools--> Install --> HFM Client for 64bits.
           Does anyone could help on that ?
    Thanks,

    What web server are you using, if it is OHS then the online will be automatically configured and redirect to the help located on the Oracle website.
    If you are using a different web server or want to run the help locally have a read of - Configuring Online Help to Run Locally
    I also wrote a blog based on 11.1.1.2.2 - More to life than this...: 11.1.2.2 Online help or not
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help The profile for the user is a temporary profile. (Exception from HRESULT: 0x80090024)

    An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help The profile for the user is a temporary profile. (Exception from HRESULT: 0x80090024) 
     while proview the report i will get this error am using sql server 2008R2,
    can u plesae hlep me out for this
     

    <Header>
      <Product>Microsoft SQL Server Reporting Services Version 2009.0100.1600.01 ((KJ_RTM).100402-1539 )</Product>
      <Locale>English (United States)</Locale>
      <TimeZone>W. Europe Standard Time</TimeZone>
      <Path>C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\Logfiles\ReportServerService__01_30_2015_03_09_32.log</Path>
      <SystemName>WEGDACM1</SystemName>
      <OSName>Microsoft Windows NT 6.1.7601 Service Pack 1</OSName>
      <OSVersion>6.1.7601</OSVersion>
      <ProcessID>4880</ProcessID>
      <Virtualization>Hypervisor</Virtualization>
    </Header>
    rshost!rshost!5e4!01/30/2015-03:09:32:: i INFO: Currently registered url http://+:80/ReportServer_MSSQLSERVEREPORT/ on endpoint 2
    rshost!rshost!5e4!01/30/2015-03:09:32:: e ERROR: Failed to register url=http://+:80/Reports/ for endpoint 3, error=b7.
    rshost!rshost!5e4!01/30/2015-03:09:32:: w WARN: Endpoint 3 is enabled but no url is registered for vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\ReportManager.
    servicecontroller!DefaultDomain!1e30!01/30/2015-03:09:32:: e ERROR: Error creating HTTP endpoint. System.Runtime.InteropServices.COMException (0x800700B7): Cannot create a file when that file already exists. (Exception from HRESULT: 0x800700B7)
       at Microsoft.ReportingServices.HostingInterfaces.IRsUnmanagedCallback.CreateHttpEndpoint(RsAppDomainType application, String[] urlPrefixes, Int32 cPrefixes, String[] hosts, Int32 cHosts, Boolean wildCardPresent, String virtualDirectory, String
    filePath, Int32 authType, Int32 logonMethod, String authDomain, String authRealm, Boolean authPersist, Int32 extendedProtectionLevel, Int32 extendedProtectionScenario, Boolean enabled)
       at Microsoft.ReportingServices.Library.ServiceAppDomainController.SetWebConfiguration(RunningApplication rsApplication, Boolean enabled, String folder)
    rshost!rshost!65c!01/30/2015-03:09:32:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer_MSSQLSERVEREPORT/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\ReportServer\ReportBuilder.
    rshost!rshost!1e30!01/30/2015-03:09:32:: i INFO: Derived memory configuration based on physical memory as 16776696 KB
    servicecontroller!DefaultDomain!1e30!01/30/2015-03:09:32:: i INFO: Recycling the service from the default domain
    rshost!rshost!1e30!01/30/2015-03:09:46:: i INFO: Application domain type WindowsService statistics: created: 7, unloaded: 7, failed: 0, timed out: 0.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:46:: i INFO: Appdomain:11 WindowsService_7 started.
    library!WindowsService_7!1e30!01/30/2015-03:09:46:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    servicecontroller!WindowsService_7!1e30!01/30/2015-03:09:46:: e ERROR: Error initializing configuration from the database: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration
    error. 
    resourceutilities!WindowsService_7!1e30!01/30/2015-03:09:47:: i INFO: Reporting Services starting SKU: Enterprise
    servicecontroller!WindowsService_6!1e30!01/30/2015-03:09:47:: i INFO: Service controller exiting.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:47:: i INFO: Appdomain:10 unregistered.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:47:: i INFO: Appdomain:10 WindowsService_6 unloading.
    appdomainmanager!DefaultDomain!1f40!01/30/2015-03:09:47:: i INFO: AppDomain:10 0 pending unload(s)
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: ServiceStartThread: Exception caught while starting service. Error: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration
    error. 
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: ServiceStartThread: Attempting to start service again...
    library!DefaultDomain!202c!01/30/2015-08:04:43:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!DefaultDomain!202c!01/30/2015-08:25:26:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!DefaultDomain!202c!01/30/2015-08:26:16:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    The above is my log file pls find it resolve my problem,am trying to add the encryption key to my configuration seetings it will through the error like The profile you were used is temporary profile.

  • Search help: Internal Error.

    Hi,
    I am getting information message : 'Search help: Internal Error' after incorporating code in RETURN event. My aim was to populate the value from Hit list to Value with restriction field and then by removing some search select criteria, again display the hit list. It is coming back to the value with restriction field screen  also populating the fields properly, below 1 information message is coming 'Search help: Internal Error'. If I remove some field from selection and again press the go button, it is doing nothing and system is hanging. The details are given below.
    I have created one search help ZTMVGR1 having the following details:
    Search help type : Elementary.
    Selection Method : MVKE
    Search help exit:  ZF4_MATGRP_EXIT1.
    Display value with restrictions : A
    Field          Import           EXPORT   LPOS      SPOS   SDis     Data Element
    MATNR       X                   X              5             5                     MATNR               
    VKORG      X                   X              1              1                     VKORG
    VTWEG      X                   X              2              2                     VTWEG
    MVGR1      X                   X               3             3                      MVGR1
    KONDM      X                   X               4             4                      KONDM
    MAKTX      X                   X               6              0                     MAKTX
    In the search help exit ZF4_MATGRP_EXIT1 I have used three events:
    1) PRESEL : Purpose of using this was I was not able to see F4 help for few fields in value with restriction screen . I found out that in SHLP-INTERFACE-F4FIELD is equal to 'X', sometimes in search help if that field's value is 'X' , F4 help does not come even if check table exists for that field.
    2) DISP : Purpose, I want to fetch material description field in exit only. MAKTX does not exist in MVKE, so either I need to create a view containing all my fields, or populate the one which is not there in selection method in exit.
    3) Return : Purpose,  I want to put VKORG, VTWEG and MATNR ( MATNR has collective search help, based on material description , we can put material ) . The hit list we get contains VKORG, VTWEG, MATNR, KONDM, MVGR1 and MAKTX. When we double click on hitlist the value returns , I want to populate these entries in value with restriction field. So KONDM and MVGR1 field will be populated. Now I will remove the value of material-low  from selection screen and find out for VKORG, VTWEG and MVGR1/KONDM what materials are there. But after writing the code for event RETURN I am getting information message 'Search Help: Internal Error'.
    My code snippet is given below.
    <removed by moderator>
    Moderator message: please post only relevant code parts, your posts must contain less than 5000 characters to preserve formatting.
    Edited by: Thomas Zloch on May 13, 2011 1:35 PM

    HI,
    In search help exit you need to use the below mentioned function modules
    'F4UT_PARAMETER_ALLOCATE'          For allocating fields
    'F4UT_PARAMETER_VALUE_GET'       Get Value
    'F4UT_PARAMETER_RESULTS_PUT'     put Value
    In the same order.
    Thanks & regards,
    Bhargav.

  • Error "Online Help content cannot be displayed" | Acrobat XI

    Hi,
    I receive the error message "Online Help content cannot be displayed" in Adobe Reader/Acrobat XI when I try to open it.
    For Version 10.1.4 there is a Regestry fix: http://helpx.adobe.com/acrobat/kb/error-online-help-content-cannot.html
    Is there a similar solution for Adobe Reader/Acrobat XI?
    I tried to replace the Version Number already, but there is no change.
    Additional question: Are there still problems with the Proxy Server in Adobe Reader/Acrobat XI?
    Thanks you for your help in advance.
    Regards,
    Dirk

    I think you are looking for this PDF which is called "Adobe PDF Creation Settings".
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/PDFCreationSettings_v9.pdf
    Here is the PDFMark Reference.
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdfmarkReference_v9.pdf

  • Sapdoccd.log.........error during Online help installation

    Hi guys,
       I configured the Online help with the PlainHtmlfile format on our server, i shared the SAPHelp folder on our server. While trying to view the SAP Library from a client side.it gave an error. when i checked the sapdoccd.log file this is what i got.
    Program path =     C:\Program Files\SAP\FrontEnd\sapgui\HTMLHELP\SHH.EXE
    SHH version  =     7.1.0.5
    Command line =     "TYPE=3&SERVER=&PATH=
    6.11.2.119\SAPHelp\PlainHTML\helpdata\EN&SYSTEM=NGD&_CLASS=IWB_STRUCT&_LOIO=&_SLOIO=e18e51341a06084de10000009b38f83b&LANGUAGE=EN&RELEASE=600&IWB_COUNTRY=&IWB_INDUSTRY=SEM-BW&_SCLASS=IWB_STRUCT&FRAME=X"
    Info:          --- Default settings from command line ---
    Info:          HelpType=PlainHtmlFile
    Info:          PlainHtmlFilePath=
    6.11.2.119\SAPHelp\PlainHTML\helpdata\EN
    Info:          --- Contents of profile "C:/WINDOWS/sapdoccd.ini" ---
    Info:          Could not read profile "C:/WINDOWS/sapdoccd.ini"
    Info:          --- Contents of profile "C:/Program Files/SAP/FrontEnd/sapgui/sapdoccd.ini" ---
    Info:          Could not read profile "C:/Program Files/SAP/FrontEnd/sapgui/sapdoccd.ini"
    Info:          --- Contents of profile "C:/Program Files/SAP/FrontEnd/sapdoccd.ini" ---
    Info:          Could not read profile "C:/Program Files/SAP/FrontEnd/sapdoccd.ini"
    Warning:     Could not read any profile
    Info:          --- Starting PlainHtml ---
    Info:          URL="
    6.11.2.119\SAPHelp\PlainHTML\helpdata\EN\e1\8e51341a06084de10000009b38f83b\frameset.htm"
    Info:          --- Version info ---
    Info:          Microsoft Windows Server 2003 version 5.2 Service Pack 2, v.4035 (Build 3790)
    Info:          Microsoft Internet Explorer version is 6.0.3790.4275
    Info:          Microsoft HTML-Help version is 5.2.3790.2825
    What do i do?
    Regards
    Edited by: Basisman on Feb 23, 2010 7:13 PM

    Hi,
            Restart the installation from the begining
    Regards
    Umesh K

  • Online help index error w.r.t oracle text

    Hi,
    Error creating online help index.
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: Oracle Text error: DRG-10700: preference does not exist: CTXSYS.DEFAULT_LEXER
    when i click on help on htmldb and then when i click on find. i get this following error.
    how do i fix this error.
    Can someone help me please.
    THanks,
    Philip.

    Steps to resolve the domian index creation problem:
    Step 1: Ensure the schema CTXSYS does not exist, if exists ignore the execution of “step 2”.
    Step 2: Add the below mentioned statement above the existing statement(also mentioned below) in the catctx.sql file which is in the $ORACLE_HOME/ctx/admin" location.
    Existing statement : Rem CTXDEF.sql - ctx default object creation
    Statement to be added: grant execute on CTX_DDL to ctxsys ;
         In SYS user login, execute the script to create CTXSYS schema and its related objects after confirming below parameters to this script
         ctxsys           - password of CTXSYS schema
         SYSAUX     - default tablespace
         TEMP           - default temp tablespace (Replace if your database default temporary tablespace is different)
    SQL>@$ORACLE_HOME/ctx/admin/catctx.sql ctxsys SYSAUX TEMP NOLOCK
    Step 3: In SYS user login execute the below script to recompile user objects
         SQL>@$ORACLE_HOME/rdbms/admin/utlrp.sql
    Step 4: In CTXSYS user login, execute the below script to create default preference for language ENGLISH
         SQL>@$ORACLE_HOME/ctx/admin/defaults/drdefus.sql
    Step 5 : In SYS User login ,execute the below script to give grant permission
    SQL>grant ctxapp to DBusername identified by Password;
    SQL>grant select on ctxsys.dr$preference to DBusername;
    SQL>grant execute on CTX_DDL to DBusername;
    Step 5: Login as DB user and execute the below drop index script if any already exists in same name
         SQL>DROP INDEX LEI_CATALOG_SEARCH_SFIELD
    Step 6: Login as DB user and create the below domain index
         SQL>CREATE INDEX LEI_CATALOG_SEARCH_SFIELD ON LET_CATALOG_SEARCH (SEARCH_FIELD) INDEXTYPE IS CTXSYS.CONTEXT;
    Regards,
    Kamal.C
    Edited by: 871818 on Jul 12, 2011 2:17 AM

  • Online LabVIEW 2009 help search function broken

    the online help for LabVIEW 2009 has a search dialog, when I enter anything into that dialog and hit search on 'firefox 3.6' I get a page displayed by firefox that says that the results will take me nowher.
    In internet explorer 8 I get a very long load time followed by an empty page.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

    Fails in Google Chrome as well.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

Maybe you are looking for

  • External usb drives 3,5" dont mount

    hi guys, i´m on mountain lion and cannot mount my two external hard disk drives from one moment to another ! i can see them in the system profiler but not in the disk repair program. any ideas to bring them to life ? it happened after the external en

  • Strange air logs in WLC 5508

    Hello, there are a lot of entries in the logs like the ones I show you: - AP's Interface:1(802.11a) Operation State Down: Base Radio MAC:58:bc:27:be:63:40 Cause=Radio interface reset. Status:NA - %RRM-3-RRM_LOGMSG: rrmChanUtils.c:290 RRM LOG: Airewav

  • CMP mapping of one to many unidirectional in wl7.0

    Hi, I like to do the following: 1) Map one bean corresponding to table A to many beans corresponding to table B 2) table B has two columns as the primary keys. 3) One of the primary key column in table B is a foreign key pointing to the primary key o

  • How to play the local flash file in nexus one smart phone?

    In Nexus one smart phone(android 2.2), the flash file in the web site is played by browser, But local flash file is not played. How to play the local flash file? Does not support local swf playing yet?

  • Skype instant webcam problems

    Anyone have similar problems and know how to help? The drivers i download say they have sucsessfully installed the web cam but when i go to use it on msn or anything it doesnt show up. the box is black, no immage at all :\ help please!!! anyone know