No query engine found

I've created a simple war project within a simple ear project using Workshop 9.2, and have deployed the ear to the example server. The war contains a single web service that accepts an xml string and an xquery string. The web service applies the xquery against the xml like so, using xml beans:
<pre>
     @WebMethod
     public String testXml(String xml, String xq) throws XmlException
          XmlObject xmlObj = XmlObject.Factory.parse(xml);
          XmlObject[] results = xmlObj.execQuery(xq);
          StringBuffer sb = new StringBuffer();
          sb.append("<wrapper>");
          for (XmlObject result : results)
               sb.append(result.xmlText(new XmlOptions().setSavePrettyPrint()));
          sb.append("</wrapper>");
          return sb.toString();
</pre>
Problem is, when I test this web service, I get the following exception. What am I doing wrong here?
<pre>
java.lang.RuntimeException: No query engine found
at org.apache.xmlbeans.impl.store.Query.getCompiledQuery(Query.java:120)
at org.apache.xmlbeans.impl.store.Query.getCompiledQuery(Query.java:53)
at org.apache.xmlbeans.impl.store.Query.objectExecQuery(Query.java:43)
at org.apache.xmlbeans.impl.store.Xobj.exec_query(Xobj.java:2503)
at org.apache.xmlbeans.impl.values.XmlObjectBase.execQuery(XmlObjectBase.java:480)
at org.apache.xmlbeans.impl.values.XmlObjectBase.execQuery(XmlObjectBase.java:462)
at xmlbeans.TestXMLBeans.testXml(TestXMLBeans.java:16)
at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
    at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
    at weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:99)
    at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:64)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:85)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:165)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:84)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3214)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1983)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1890)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1344)
</pre>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

hi all
i have one more soln for this problem
I got this working by adding a element in weblogic-application.xml this one makes to load our version of xmlbeans/saxon jar from the app-inf lib folder
Step 1.
I copied all the jars in the app-inf lib folder
:\workshop\kai\webserviceEAR\EarContent\APP-INF\lib>dir
Volume in drive C is SYSTEM
Volume Serial Number is 7CF4-E4FE
Directory of C:\workshop\kai\webserviceEAR\EarContent\APP-INF\lib
0/01/2007 07:14 PM <DIR> .
0/01/2007 07:14 PM <DIR> ..
0/01/2007 07:13 PM 23,630 jsr173_1.0_api.jar
0/01/2007 07:14 PM 60,047 resolver.jar
0/01/2007 06:59 PM 12,569 saxon8-jdom.jar
0/01/2007 06:59 PM 2,297,989 saxon8.jar
0/01/2007 07:14 PM 2,664,574 xbean.jar
0/01/2007 06:59 PM 5,578 xbean_xpath.jar
0/01/2007 07:14 PM 429,483 xmlpublic.jar
7 File(s) 5,493,870 bytes
2 Dir(s) 2,820,255,744 bytes free
step-2 added this entry into the weblogic-application.xml
<wls:prefer-application-packages>
<wls:package-name>org.apache.xmlbeans.*</wls:package-name>
</wls:prefer-application-packages>
here I ran into another problem deployment discriptor did not identify the entry prefer-application-package
I had to modify the first line of the weblogic-application.xml
<wls:weblogic-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/j2ee_1_4.xsd">
ie On my end, I modfied weblogic-application.xml file by removing these 2 schema locations from the opening tag:
http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-application.xsd
After that I ran the service and see the xquery working fine the basic logic here is we made the jar files from the application to load using the tag prefer-application-packages
Thanks

Similar Messages

  • Query engine : Can not find DSN in Connection String

    DearSir/Madam,
    Opearating System Windows 7 Professional(32-bit).
    I am using Application, which is developed : Visual basic 6.0(32-bit), Report Writer : Crystal Report 9.2.693(32-bit) and database: Oracle 9.2.0.10(32-bit).
    ODBC Data source : System DSN created and Connection established (Based on Driver : CR ORACLE ODBC Driver 4.10 (cror818.dll))
    In windows 7 environment Data Base connectivity and data fetching also wroking fine.
    My problem is while running reports it display error as "Query engine : Can not find DSN in Connection String"
    I want run time reports.
    For your kind information, at the same time in Windows XP Professional there is no problem found and working fine.
    Kindly help me.
    Thanks and regards,
    Swarup

    Crystal Reports 9.x is not supported on Win 7. See the following wiki:
    http://wiki.sdn.sap.com/wiki/x/b4JiAw
    - Ludek

  • Failed to create the Crystal Query Engine. Please Help me resolve this issu

    i keep getting the this error :
    Failed to create the Crystal Query Engine.
    on this line of code :
    billing.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, fileName);
    i'm trying to use export it to pdf.
    the page works fine on my notebook. but when deployed to window server 2003 server i get this error.
    Crystal Reports Basic Runtime for Visual Studio 2008 is already installed there.
    I have provided NETWORK_SERVICE and ASPNET access to the root drive C:, which is the only drive on the server. but i'm getting this error.

    I'd like you to download the Process Monitor utility from here:
    http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx
    Filter for the name of your process as this utility makes large logs. Once you have a log, search for any error messages (Access denied, etc.).
    The only note I found on the same error is [here|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] which points to the crqe.dll being at fault.
    See if the Depends utility tells you of any missing dependencies. Depends is here:
    http://www.dependencywalker.com/
    (Simply open the dll in the utility)
    Ludek

  • Query Engine Error when adding to repository.

    I'm using Crystal 9.  I am trying to using the Add Command function as a datasource from an ODBC connection.  The SQL is straightforward.
    Select dbo.CDS_STATDAY.Meta_ID
    From dbo.CDS_STATDAY
    I get an error when I select the "Add to Repository" checkbox in the "Add Command to Report" dialog box.  I don't get an error if I don't select it and the query seems to run fine.
    The errors I get are 'Query Engine Error:"' and then 'Not supported.  Details: Failed to create object.'
    Is this a permissions problem?

    Hi Mark,
    Do you have  Business Objects / Crystal Enterprise in stalled in your network? If so, what is the version of Enterprise you are using ?  This is becuase, the Crystal Query enginene have changed from  CR server XI. 
    Thanks,
    Sastry

  • Error in File... Failed to create the Crystal Query Engine.

    I am attempting to use Compliance Suite 4 to open a report.  The error I get is:
    Error in File
    S:\Applications\Apps\CSuite\Reports\schedstu.rpt:
    Failed to create the Crystal Query Engine.
    S:\Applications\Apps\CSUITE\Report\schedstu.rpt
    When we attempt to open the report with Crystal Reports XI we get the following:
    NO SAVED DATA
    This report file does not contain saved data and cannot be viewed.
    These reports will open for the same account on a different PC.  Has anyone seen this?  Thanks!

    You'll probably get a quicker answer from the people at Compliance Suite. All that error is telling me is that the database engine does not understand what it is that you're throwing at it in terms of a database connection or data type. As it's a 3rd party app, I do not know how this is implemented so that is all I can say...
    Ludek

  • Query Engine Error in Crystal Report

    I have a asp application with crystal report as reporting tool. Every thing works fine with Oracle 9i, but when i migrate to Oracle Database 10g Release2 some of the reports in crystal report shows following error report.
    Query Engine Error:'HY00:[oracle][ODBC][ora]ora-01456:may not perform insert/delete/update operation inside a Read Only transaction.
    ORA-06521:at "<dbusername>.<procedure name>,line 58
    ORA-06512:at line1
    I checked the database is in READ WRITE mode.
    any help wolud be appreciated.
    Thanks in Advance
    Debashis

    Hi,
    This is posted in the wrong forum. This forum is for Oracle Berkeley DB. Please find the correct forum and post your question there.
    Regards,
    Alex Gorrod,
    Oracle Berkeley DB

  • Query Engine Error:

    Post Author: swordfish8
    CA Forum: General
    Hi, Many thank for taking the time to read this thread, the web application work on development box but fails when deployed.
    Please help, the problem is detailed below, cheers, Praveen
    Developed Environment
    Web Application Developed in VS .NET 2002
    Crystal Reports 9.0
    Set Up Package :
    Project Output: Primary Output and Content Files selected
    Merge Modules:        Database_Access.msm
                                           Database_Access_enu.msm
                                 Managed.msm
                                 Regwiz.msm
                                 VC_CRT.msm
                                 VC_STL.msm
    Code:
    mycommand.CommandText = "ASR_STATISTICS"
    mycommand.CommandType = CommandType.StoredProcedure
    With mycommand.Parameters
    .Add(New SqlParameter("@WeekStartDate", SqlDbType.DateTime)).Value =    _CDate(Me.txtDate.Text.Trim)
    .Add(New SqlParameter("@WeekEndDate", SqlDbType.DateTime)).Value = _
      CDate(Me.txtEndDate.Text.Trim)
    .Add(New SqlParameter("@Customer", SqlDbType.VarChar)).Value = _
               (Me.lstCustomer.SelectedItem.Value.Trim)
    End With
    Dim myDA As New SqlClient.SqlDataAdapter()
    myDA.SelectCommand = mycommand
    Dim myds As New Dataset1()
    myDA.Fill(myds, "ASR_STATISTICS")
    Dim oRpt As New crptStatistics()
    oRpt.SetDataSource(myds)
    Me.CrystalReportViewer.ReportSource = oRpt
    Installed the web application on the server
    Operating System: Windows Server 2003
    ERROR
    Server Error in '/ASDReports' Application.
    Query Engine Error: 'C:\WINDOWS\TEMP\temp_dff30854-29f4-4c4e-8fe0-66dbea4cd19b.rpt'
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: CrystalDecisions.CrystalReports.Engine.DataSourceException: Query Engine Error: 'C:\WINDOWS\TEMP\temp_dff30854-29f4-4c4e-8fe0-66dbea4cd19b.rpt'Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:
    &#91;DataSourceException: Query Engine Error: 'C:\WINDOWS\TEMP\temp_dff30854-29f4-4c4e-8fe0-66dbea4cd19b.rpt'&#93;
        . K(String 
    , EngineExceptionErrorID   ) +514
        . F(Int16   , Int32   ) +493
       CrystalDecisions.CrystalReports.Engine.FormatEngine.GetPage(PageRequestContext reqContext) +462
       CrystalDecisions.ReportSource.LocalReportSourceBase.GetPage(PageRequestContext pageReqContext) +201
       CrystalDecisions.Web.ReportAgent.v(Boolean  `) +137
       CrystalDecisions.Web.CrystalReportViewer.OnPreRender(EventArgs e) +99
       System.Web.UI.Control.PreRenderRecursiveInternal() +77
       System.Web.UI.Control.PreRenderRecursiveInternal() +161
       System.Web.UI.Control.PreRenderRecursiveInternal() +161
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1360
    Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832

    Post Author: Bandit07
    CA Forum: Upgrading and Licensing
    I would go through and add in each criteria 1 at a time to see which one is causing the error. 

  • Query Engine Error in Visual Studio 2005

    Post Author: Chris K
    CA Forum: Crystal Reports
    I created a report in Crystal 11 and have included it in a project created in Visual Studio 2005.  When I try to run the report in VS I get the message: "Query Engine Error: 'Error Code: 0x' Failed to open a rowset.  Error in File"  I can run the report in Crystal without any errors.  The report has subreports and parametes.  I am using a stored procedure in SQL 2005.  I have included may other reports in this project and not had any problems.  Any suggestions?

    Post Author: gandasi
    CA Forum: Crystal Reports
    I had an issue that sounds very similar - report worked beautifully in Crystal, but "failed to return rowset" when run from my application (which is not VS2005, but in my case that didn't matter).
    Turns out that I had not given execute rights to the stored procedure to the public group in SQL server. I guess when running the report in Crystal it was using my Windows Authentication to logon or something which was why that was running OK.
    I explicitly set the permissions on the stored proc to grant public execute, and the report would run from my app.
    Hope this helps
    Cheers

  • Query Engine Error after upgrade from CR for VS2003 to CR for VS2008

    Three CR reports were built in CR 8.5, loaded into VS2003 (C#), and converted. Each report worked fine for the past three years. Each report users the same odbc connection direct to the Sybase 12.5.3 database and each is based on a stored procedure. Each report has input parameters. Recently we did an upgrade to VS2008. We installed the CRRedist2008_x86.msi on the development machine running Windows XP and on the server running Windows 2003. No changes were made to the design of the reports, the parameters, or to the database stored procedures.
    Several other reports run just fine since the update to VS2008, however, two reports are now raising an error message "Query Engine Error: 'An internal error has occurred. Please contact Business Objects technical support.' Failed to open a  rowset." This error message occurs just after ReportViewer.ShowDialog() method is called (login has already been successfully achieved) I verified that with the parameters being passed to the reports are correct and that these should indeed be returning data.
    One additional report is also now raising the error "Query Engine Error at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetLastPageNumber(RequestContext pRequestContext) at CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext) ". It can be described as above, odbc connection to Sybase 12.5.3, achieves a successful login, based on a stored procedure that is unchanged. The rpt itself is unchanged.
    I would appreciate your assistance with getting these reports working again. Any suggestions welcome!

    I forgot to mention that I had already done a 'Verify Database' on each of these reports, with no success. However, I have now repeated the 'Verify Database' on each report and they all work. Not sure why it had to be done a second time, but I am very happy that it works. Thank you for your response.
    In answer to your question - why does the Crystal Reports runtime have to be installed on the development machine? This is because our process includes an installation of the application on the development machine, independent of the debug environment, and a test of that application instance before deploying to the application server.

  • Query engine failed error for crytal report refreshing to new params in jsp

    Using licensed weblogic 8.1 server in production mode. Weblogic workhsop has inetegrated supprot for crystal reports 9. Using standalone report & accessing sql server through odbc, i got result for different parameters passed.
              Problem Area : Passing parameter to have specific report causes unexpected query engine failed error in com.crystaldecisions.report.web.viewer.CrystalViewer class. If viewer.refresh method is commented, then static (already saved) report is displayed through jsp. But using viewer.refresh method for dynamic report genertaion for new parameters through jsp gives above error.

    Hello
              I'm experiencing the same problem. Please let me know if you've any solution.

  • Crystal Reports 10 Error "Unknown Query Engine Error"

    Hi guys,
    after creating reports with crystal reports 2008 fails,because there's no 64-bit runtime version i try to develope my reports now with Crystal Reports 10 (ships with Visual Studio 2008).
    I've minimized the complexity to a minimum - a simple console application without SharePoint or something like that. Now i'm getting the error:
    "Unknown Query Engine Error"
    when i try to set the DataSource for my report. Of course i created a new report file with CR10 to avoid compatibility issues. Every Users has full permissions on the file system...
    I'm using the follwing Code Snippets, which are working fine for Crystal 2008 and don't threw an error while compiling in CR10.
    Schema.xsd:
    <?xml version="1.0" encoding="utf-8"?>
    <xs:schema id="XMLSchema1"
        targetNamespace="http://tempuri.org/XMLSchema1.xsd"
        elementFormDefault="qualified"
        xmlns="http://tempuri.org/XMLSchema1.xsd"
        xmlns:mstns="http://tempuri.org/XMLSchema1.xsd"
        xmlns:xs="http://www.w3.org/2001/XMLSchema"
    >
      <xs:element name="News">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Title" type="xs:string" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>
    ConsoleApplication.cs:
                MyReport report = new MyReport();
                DataSet ds = new DataSet();
                DataTable t = new DataTable("News");
                DataColumn title = new DataColumn("Title");
                title.DataType = Type.GetType("System.String");
                t.Columns.Add(title);
                ds.Tables.Add(t);
                DataRow drDataRow;
                drDataRow = t.NewRow();
                drDataRow["Title"] = "My Title";
                t.Rows.Add(drDataRow);
                * //Error is thrown here*
                report.SetDataSource(ds);
                string filename = "C:\\report.pdf";
                report.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat,
                     new System.IO.FileInfo(filename).ToString());
    Does anyone have an advice: Do i miss a patch or hotfix? These problem frustrates me already, because i thought setting a datasource couldn't be such a problem...
    Thanks in Advance,
    Christian

    Resolution:
    This Version of Crystal Reports (Visual Studio 2008 .Net) doesn't want the crdb_adoplus.dll in the GAC. After i uninstall the *.dll the Console Application run without problems. For SharePoint you have to create a custom CAS which should look like this:
    <CodeGroup
                                  class="UnionCodeGroup"
                                  version="1"
                                  PermissionSetName="FullTrust"
                                  Name="Crystal_Strong_Name"
                                  Description="This code group grants code signed with the Crystal Reports strong name full trust. ">
                                <IMembershipCondition class="StrongNameMembershipCondition"
                                                      version="1"
                                                      PublicKeyBlob="0024000004800000940000000602000000240000525341310004000001000100f1191170c753924fe8b624c15216d8d4869e4f37d0e7941b77c05c67ba0662a7ad9099e1041739a3b1f33255c4f8c878649a558b7aaef8e08c7ce3edc2275cbda2608381813fc038db8e5792a729658c59e73121691f22197aa92c7e715d7dfdbb2730b037ccdfcd2708fbfc8c9a1a60be50c635975afce4e4b1e3e12613cfc2"
                                                      />
    Well - CR drives me crazy
    Edited by: C.Kaiser on Oct 14, 2010 4:36 PM

  • Unknown Query Engine Error when doing a Verify Database

    Hi there,
    Using Crystal 10. Sybase Server.
    Have built a report that connects to a stored procedure. The stored procedure has since been updated, and new fields have been added.
    Usual process for me is to simply:
    1. Go to Database > Verify Database
    2. Enter login credentials for server
    3. Enter parameter values (as per stored proc)
    4. Report is then updated and new fields display
    Currently, I am able to complete step 3. As soon as I hit ok, i get an 'Unknown Query Engine Error' - to which I can only hit OK. Doing so results in no changes - and the new fields of course do not display.
    Any clues on what might be going wrong? I am guessing that it is something to do with the stored proc itself - but perhaps it is some sort of permissions issue?
    Grateful for any assistance you can provide. Please let me know if you need any more info from me.
    Many thanks,
    Corinne

    Likely due to some field type defined incorrectly or not supported. Try creating a new report off the new update connection info. If that fails also then it's the data source causing the problem.

  • Named query not found

    Please help me, for God's sake, the following error is occurring:
    *12:03:28,550 ERROR [STDERR] Caused by: java.lang.IllegalArgumentException: Named query not found: Configuracao*
    ConfiguracaoManagerBean.java
    public Configuracao getConfiguracao(Long codcid, String parametro) {
              EntityManager em = (EntityManager) ctx.lookup('sincronia-unit');
              Query query = em.createNamedQuery("*Configuracao*");
              query.setParameter("codcid", codcid);
              query.setParameter("parametro", parametro);
              try {
                   return (Configuracao) query.getSingleResult();
              } catch (NoResultException e) {
                   return null;
    Configuracao.java
    package br.com.dsfnet.entity;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.NamedQueries;
    import javax.persistence.NamedQuery;
    import javax.persistence.Table;
    @NamedQueries({
         @NamedQuery(name = "Configuracao", query = "Select o From Configuracao o Where o.codcid = :codcid and o.parametro = :parametro")
    @Table(name = "TBLCONFIGSIN", schema = "SPDNET")
    public class Configuracao implements Serializable {
         private static final long serialVersionUID = 1L;
         @Column(name = "CODCID")
         private Long codcid;
         @Column(name = "PARAMETRO")
         private String parametro;
         @Column(name = "VALOR")
         private String valor;
         public void setCodcid(Long codcid) {
              this.codcid = codcid;
         public Long getCodcid() {
              return codcid;
         public void setParametro(String parametro) {
              this.parametro = parametro;
         public String getParametro() {
              return parametro;
         public void setValor(String valor) {
              this.valor = valor;
         public String getValor() {
              return valor;
    Grateful now

    You specified both a datasource and a dbtype. In this case, since you are querying a database (and not running a query-of-queries), you should leave out the dbtype attribute. See the cfquery documentation for details.

  • Another Problem will Crystal Query Engine

    Post Author: AHandford
    CA Forum: Upgrading and Licensing
    Hello,
    I have in the past had problems with the crystal query engine, which were resolved by registering the crqe.dll  in the bin directory.  That was on Windows 2000. In that case I was able to open reports in  CR developer successfully and export Crystal reports in PDF format from a third party LIMS system. No problems.
    I have now got XP and am having to troubleshoot the problem again. I registered the dll and my install of CR10 is working fine but  I get the usual "Failed to create the Crystal Query engine" when trying to export the Crystal report from LIMS. If I replace the CRQE.dll ( dated 2003) which was shipped with v10 with another CRQE dll (dated april2006) I can now export from the third party LIMS OK but cannot open the reports in developer.
    Is there any specific problem with doing this on XP?  Do I need a full set of more recent dlls to get this to work?
    Manty thanks,
    Andy Handford

    You'll probably get a quicker answer from the people at Compliance Suite. All that error is telling me is that the database engine does not understand what it is that you're throwing at it in terms of a database connection or data type. As it's a 3rd party app, I do not know how this is implemented so that is all I can say...
    Ludek

  • Unknown Query Engine Error

    Post Author: Scott Miers
    CA Forum: Data Connectivity and SQL
    Hello,
    I have an application written in vb6 that opens a crystal 11 report.
    The report retrieves data from Microsoft SQL Server 2005.
    Occasionally, I get this error when opening large reports:
    "Unknown Query Engine Error"
    The error also occurred on Microsoft SQL Server 2000 and Crystal 8.5
    I only receive this error message on windows XP. This error does not occur on Windows 2000 workstation or server.
    I can easily reproduce the problem.
    Any Suggestions?
    Regards,
    Scott

    Post Author: sharonmtowler
    CA Forum: Data Connectivity and SQL
    im not sure if you are asking a question, do you place the parameters in the sub report as well as the main?

Maybe you are looking for

  • TS1307 my "outgoing Mail server is offline and I can't get it back online

    I can send  and receive emails from my iphone, ipad and online mac account, but can not send emails on my mail from my macbook, it stopped working suddenly a few weeks ago and says all my outgoing smtp's are offline, how do i get them back online?

  • Motion in FCPX - click lag, hanging, tortuously slow rendering

    Hello Colleagues, I have 2 iMacs of different generations, both up-to-spec and up-to-date on OS, FCP, and Motion. I am experiencing very poor performance when using Motion "generator" graphics: lag, hanging, slow renders, and sometimes even crashing.

  • HELP! Messages received lost in Inbox...

    Hi. Have a problem with my N79. When I have more than a hundred messages in my INBOX, new messages go to the middle of the list, not to the top. If I don't read a message the moment I receive it I have to look it through the whole Inbox! It isn't a m

  • Waiting for Authorization

    Hi, I am new to mac and know nothing about it. I just signed up for a jabber account and added my friends from my msn list. But they always shows "waiting for authoriztion". They didn't receive anything from me. How can I fix this? Thanks

  • Installing PS CS5.1 32bit and 64bit

    I accepted the defaults while installing photoshop and it seems 2 versions installed?  Do I need both the 32bit and 64bit versions on Windows 7 64bit ?  Also, when I look at installed programs it only indicates Photoshop CS5 without any 32bit or 64bi