OPA Data Source Connector failed to run on Linux server

When I run data source connector for java on linux server using:
java -Xms512m -Xmx512m -classpath "/usrfile/OPA/DataSourceConnector/lib/determinations-engine.jar:/usrfile/OPA/DataSourceConnector/lib/log4j-1.2.15.jar:/usrfile/OPA/DataSourceConnector/lib/sqlitejdbc-v044-native.jar:/usrfile/OPA/DataSourceConnector/lib/determinations-data-source-connector.jar:/usrfile/OPA/DataSourceConnector/lib/jsr173_api.jar:/usrfile/OPA/DataSourceConnectorlib/sjsxp.jar" com.oracle.determinations.connector.DataSourceConnector /usrfile/OPA/DataSourceConnector/data/DEMO3/run/DEMO3.xml -debug
I got the following error message.So I think the path “..\conf\configuration.xsd” is hard coded and it raised this error. The detail error log is:
27-12-2010, 11:35:20, INFO , Processing file /usrfile/OPA/DataSourceConnector/data/DEMO3/run/DEMO3.xml.
27-12-2010, 11:35:20, ERROR, /usrfile/OPA/DataSourceConnector/bin/..\conf\configuration.xsd (No such file or directory)
org.xml.sax.SAXException: /usrfile/OPA/DataSourceConnector/bin/..\conf\configuration.xsd (No such file or directory)
at gnu.xml.validation.xmlschema.XMLSchemaSchemaFactory.newSchema(libgcj.so.7rh)
at javax.xml.validation.SchemaFactory.newSchema(libgcj.so.7rh)
at javax.xml.validation.SchemaFactory.newSchema(libgcj.so.7rh)
at com.oracle.determinations.connector.schema.validation.Validate.compileSchema(Unknown Source)
at com.oracle.determinations.connector.schema.validation.ValidateSAXStream.<init>(Unknown Source)
at com.oracle.determinations.connector.XMLTools.validateXML(Unknown Source)
at com.oracle.determinations.connector.Configuration.<init>(Unknown Source)
at com.oracle.determinations.connector.DataSourceConnector.kickOff(Unknown Source)
at com.oracle.determinations.connector.DataSourceConnector.main(Unknown Source)
Caused by: java.io.FileNotFoundException: /usrfile/OPA/DataSourceConnector/bin/..\conf\configuration.xsd (No such file or directory)
at gnu.java.nio.channels.FileChannelImpl.open(libgcj.so.7rh)
at gnu.java.nio.channels.FileChannelImpl.<init>(libgcj.so.7rh)
at gnu.java.nio.channels.FileChannelImpl.create(libgcj.so.7rh)
at java.io.FileInputStream.<init>(libgcj.so.7rh)
at gnu.java.net.protocol.file.Connection.connect(libgcj.so.7rh)
at gnu.java.net.protocol.file.Connection.getInputStream(libgcj.so.7rh)
at java.net.URL.openStream(libgcj.so.7rh)
at gnu.xml.validation.xmlschema.XMLSchemaSchemaFactory.getDocument(libgcj.so.7rh)
at gnu.xml.validation.xmlschema.XMLSchemaSchemaFactory.newSchema(libgcj.so.7rh)
...8 more
I have checked the file path using following command:
[root@bjx4 ~]# more /usrfile/OPA/DataSourceConnector/bin/..\conf\configuration.xsd
/usrfile/OPA/DataSourceConnector/bin/..confconfiguration.xsd: No such file or directory
[root@bjx4 ~]# more /usrfile/OPA/DataSourceConnector/bin/../conf/configuration.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://oracle.co
m/determinations/connector/data-source" targetNamespace="http://oracle.com/deter
minations/connector/data-source" elementFormDefault="qualified" version="10.0.0:
20091013" xml:lang="en">
<xsd:element name="configuration" type="configuration-type"/>
<xsd:complexType name="configuration-type">
<xsd:sequence>
<xsd:element name="threads" type="threads-type" minOccurs="0" maxOccurs
="1"/>
<xsd:element name="run-limit" type="run-limit-type" minOccurs="0" maxOc
curs="1"/>
<xsd:element name="time-out" type="time-out-type" minOccurs="0" maxOccu
rs="1"/>
<xsd:element name="unknown-value" type="unknown-type" minOccurs="0" max
Occurs="1"/>
<xsd:element name="uncertain-value" type="uncertain-type" minOccurs="0"
maxOccurs="1"/>
<!-- required elements -->
<xsd:element name="data-sources" type="data-sources-type" minOccurs="1"
maxOccurs="1"/>
<xsd:element name="data-mappings" type="data-mappings-type" minOccurs="
1" maxOccurs="1"/>
[root@bjx4 ~]# more /usrfile/OPA/DataSourceConnector/bin/..\conf\configuration.xsd
/usrfile/OPA/DataSourceConnector/bin/..confconfiguration.xsd: No such file or directory
[root@bjx4 ~]# cls
-bash: cls: command not found
[root@bjx4 ~]# clear
[root@bjx4 ~]# more /usrfile/OPA/DataSourceConnector/bin/..\conf\configuration.xsd
/usrfile/OPA/DataSourceConnector/bin/..confconfiguration.xsd: No such file or directory
[root@bjx4 ~]# more /usrfile/OPA/DataSourceConnector/bin/../conf/configuration.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://oracle.com/determinations/connector/data-source" targetNamespace="http://oracle.com/determinations/connector/data-source" elementF
ormDefault="qualified" version="10.0.0:20091013" xml:lang="en">
<xsd:element name="configuration" type="configuration-type"/>
<xsd:complexType name="configuration-type">
<xsd:sequence>
<xsd:element name="threads" type="threads-type" minOccurs="0" maxOccurs="1"/>
<xsd:element name="run-limit" type="run-limit-type" minOccurs="0" maxOccurs="1"/>
<xsd:element name="time-out" type="time-out-type" minOccurs="0" maxOccurs="1"/>
<xsd:element name="unknown-value" type="unknown-type" minOccurs="0" maxOccurs="1"/>
<xsd:element name="uncertain-value" type="uncertain-type" minOccurs="0" maxOccurs="1"/>
<!-- required elements -->
<xsd:element name="data-sources" type="data-sources-type" minOccurs="1" maxOccurs="1"/>
<xsd:element name="data-mappings" type="data-mappings-type" minOccurs="1" maxOccurs="1"/>
<xsd:element name="output" type="output-type" minOccurs="1" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<!-- threads -->
<xsd:complexType name="threads-type">
<xsd:attribute name="value" type="xsd:integer" use="required">
</xsd:attribute>
</xsd:complexType>
<!-- run-limit -->
<xsd:complexType name="run-limit-type">
<xsd:attribute name="value" type="xsd:integer" use="required">
</xsd:attribute>
</xsd:complexType>
<!-- time-out -->
<xsd:complexType name="time-out-type">
<xsd:attribute name="value" type="xsd:integer" use="required">
</xsd:attribute>
</xsd:complexType>
<!-- unknown value -->
<xsd:complexType name="unknown-type">
<xsd:attribute name="value" type="xsd:string" use="required">
</xsd:attribute>
</xsd:complexType>
<!-- uncertain value -->
<xsd:complexType name="uncertain-type">
<xsd:attribute name="value" type="xsd:string" use="required">
</xsd:attribute>
</xsd:complexType>
More(24%)
Please help to resolve this problem, any suggestion is appreciate.

We have confirmed this as a limitation in the current version 10.2.0 of the software, and earlier versions. We will provide more information on the timing and availability of a fix in the future.

Similar Messages

  • OPA data source connector

    Hi ,
    We are planning to make use of OPA data source connector for one of our project requirements.Please let me know if anyone has worked on it and has the relevant material.As far as I understand the data source connector processes the excel or csv files and gives the output for each record in the file applying the rulebase which then can be processed as per requirement (In our case we will be loading it in siebel )
    Regards,
    Mayuresh

    What is the "relevant material" you are looking for? There's an example that comes with both the Java and .NET media packs - see the "examples/data-source-connector" folder. There's also a "Data Source Connector" section in the Oracle Policy Automation Developer Help (included in the media pack in the "help/run" folder) that describes the configuration file and the provided example.

  • Oracle Determinations Engine Data Source Connector for Batch Processing?

    I have been trying to find +"Oracle Determinations Engine Data Source Connector"+. I have OPA 10.2 installed.
    Where can I find this in the installation directory? or Does it not come as a part of the standard installation?

    For 10.4 we have a new runtime which does what the Data Source connector does plus a whole lot more.
    The feature to look for in the new release is the Batch Processor, and you will find the documentation and the application in the Oracle Policy Automation Runtime zip file.
    The documentation has been upgraded and it should be a lot easier to use than the old DSC.
    Cheers
    Frank

  • Data source control failed to execute the insert command

    I have a sign up training calendar that runs on sharepoint 2010, over the weekend i went to install the latest cumulative update http://support.microsoft.com/kb/2817552 and it seems to have broken the signup process. Whenever some goes to sign up for an
    event they see the following error what can i do to fix this?
    Error
    The data source control failed to execute the insert command. d8b915be-5355-4d63-97bb-c9cf3aacad75
    Web Parts Maintenance Page: If you have permission, you can use this page to temporarily close Web Parts or remove personal settings. For more information, contact your site administrator.
    Troubleshoot issues with Microsoft SharePoint Foundation.
    Correlation ID: d8b915be-5355-4d63-97bb-c9cf3aacad75
    Date and Time: 7/31/2013 9:51:25 PM

    0
    Vote
    Thanks!!!
    It worked for me too

  • Custom SharePoint 2010 designer page throws "The data source control failed to execute the insert command" exception while adding the new item after the August 13, 2013 CU has installed

    We have the SharePoint Server 2010 with SP1 environment on which the custom SP2010 designer pages were working as expected before the
    August 13, 2013 CU has installed. But, getting the below exception while trying to add the new item after the CU has installed.
    Error while executing web part: System.NullReferenceException: Object reference not set to an instance of an object.     at Microsoft.SharePoint.WebControls.SPDataSourceView.ExecuteInsert(IDictionary values)     at
    System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65  w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected Microsoft.SharePoint.WebPartPages.DataFormWebPartException: The data source control
    failed to execute the insert command. 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.InsertCallback(Int32 affectedRecords, Exception ex)     at System.Web.UI.DataSourceView.Insert(IDictionary
    values, DataSourceViewOperationCallback callback)     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.FlatCommit()     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.HandleOnSave(Object sender, EventArgs e)    
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean
    inclu... 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65* w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected ...deStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    I have tried changing the "DataSourceMode" as below, now the insert command is working, but update command is not working.
    <SharePoint:SPDataSource runat="server" DataSourceMode="ListItem" />
    Also, the lookup dropdown fields are displaying the value as "<a href="Daughterhttp://cpsp10/sites/Employees/_layouts/listform.aspx?PageType=4&ListId={8F62F444-FB6A-4F03-9522-C4696B45DCD1}&ID=10&RootFolder=*">Daughter</a>"
    instead of only "Daughter".
    Please provide the solution to get rid of this issue.
    Thanks
    Ramasubbu

    Try below:
    http://social.technet.microsoft.com/Forums/en-US/ae910269-3a0c-4506-844b-e8bc89d95b71/data-source-control-failed-to-execute-the-insert-command
    http://blog.jussipalo.com/2012/01/sharepoint-2010-data-source-control.html
    While there can be many causes for this generic error message, in my case the first parameter or ddwrt:DataBind function inside the SharePoint:FormFields element was
    'i' and I was working with an Edit Form. Changing it to
    'u' as it was with every other FormField fixed the issue.
    <SharePoint:FormField runat="server" id="ff1{$Pos}" ControlMode="Edit" FieldName="Esittaja" __designer:bind="{ddwrt:DataBind('u',concat('ff1',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Esittaja')}"
    />
    Explanation:
    DataBind operation type parameters (the first parameter) are listed below:
    'i' stands for INSERT,
    'u' stands for UPDATE,
    'd' stands for DELETE.
    http://webcache.googleusercontent.com/search?q=cache:d9HHY4I7omgJ:thearkfloats.blogspot.com/2014/03/sharepoint-2010-data-source-control.html+&cd=4&hl=en&ct=clnk&gl=in
    If this helped you resolve your issue, please mark it Answered

  • How to create JNDI data source name in Tomcat 6.0.18 server?

    Hai,
    How to create JNDI data source name in Tomcat 6.0.18 server?
    Regards,
    MariMuthu.A

    [http://google.com/search?q=jndi+site:tomcat.apache.org+6.0]

  • Data Source Lookup fails

    The problem is that I get an class cast exception when doing a data source lookup. I need to know why this is happening and what can be done to avoid the exception. I have provided the following sections to document the run time environment:
    1.     The stack trace from Jdeveloper
    2.     The code that is run
    3.     The web.xml file for the application
    4.     The data source definition
    Thanks in advance for the help!!!!
    The stack trace from Jdeveloper :
    Process exited.
    C:\oracle\jdev903\jdk\bin\javaw.exe -ojvm -classpath C:\oracle\jdev903\j2ee\home\oc4j.jar -Dhttp.proxyHost=http -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts= -Xverify:none -Doracle.j2ee.dont.use.memory.archive=true com.evermind.server.OC4JServer -config C:\oracle\jdev903\jdev\system9.0.3.1035\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8996, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    m_dataSourceName = oracle.jdbc.pool.OracleConnectionPoolDataSource/default/jdbc/DBConn
    Embedded OC4J startup time: 2574 ms.
    Target URL -- http://172.17.36.54:8996/design-pcat-context-root/ProcessCatagory.jsp
    Error creating the ORB :
    Oracle9iAS (9.0.3.0.0) Containers for J2EE initialized
    Entered doUpdates()
    Trace ID: 1044899698135 Date:1/10/2003 Time: 11:54:58:135 AM
    fsweb.util.FsException
    Cause:
    java.lang.ClassCastException: com.evermind.sql.OrionCMTDataSource
         void fsweb.product.ProcessCatalogCategoryThread.doUpdates()
              ProcessCatalogCategoryThread.java:54
         void ProcessCatagory.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              ProcessCatagory.jsp:10
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpJsp.java:139
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              JspPageTable.java:317
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:465
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:379
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:853
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:721
         void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
              ServletRequestDispatcher.java:306
         boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
              HttpRequestHandler.java:767
         void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
              HttpRequestHandler.java:259
         void com.evermind.server.http.HttpRequestHandler.run()
              HttpRequestHandler.java:106
         void EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run()
              PooledExecutor.java:803
         void java.lang.Thread.run()
              Thread.java:484
    The code that is run:
    public void doUpdates()
    Connection con = null;
    OracleDataSource ds = null;
    try
    System.out.println("Entered doUpdates()");
    Context ctx = new InitialContext();
    ds = (OracleDataSource)ctx.lookup("jdbc/DBConn");
    con = ds.getConnection();
    ds = ds;
    catch(Throwable t)
    { handleException(t); }
    finally
    if(con != null)
    try { con.close(); }
    catch(Throwable t) { handleException(t); }
    System.out.println("Exit doUpdates()");
    The web.xml file for the application:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <description>Empty web.xml file for Web Application</description>
    <session-config>
    <session-timeout>30</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    </web-app>
    The data source definition:
    Location:
    C:\Program Files\Common Files\System\MAPI\1033\nt>C:\oracle\jdev903\jdev\system9
    .0.3.1035\oc4j-config\data-sources.xml
    Contents:
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources.dtd">
    <data-sources>
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="tiger"
              url="jdbc:oracle:thin:@localhost:5521:oracle"
              inactivity-timeout="30"
         />
    <data-source
         class="oracle.jdbc.pool.OracleConnectionPoolDataSource"
         name="DBConn"
         location="jdbc/DBConn"
         xa-location="jdbc/xa/DBConn"
         ejb-location="jdbc/DBConn"
         connection-driver="oracle.jdbc.driver.OracleDriver"
         password="bc4j"
         username="bc4j"
         url="jdbc:oracle:thin:@nemesis:1521:fsweb"
         inactivity-timeout="30"
         min-connections="0"
         max-connections="10">
    </data-source>
    </data-sources>

    The datasource defintion is for oc4j datasources whereas the code is trying to cast it to oracle datasource implementation. Use the datsource interface instead to get the connection. I.e
    Change the lookup code to
    javax.sql.DataSource ds = (javax.sal.DataSource)ctx.lookup(..);
    ds.getConnection();
    Dhiraj

  • The data source control failed to execute the insert command

    Hi,
      We have installed SharePoint 2010 on Windows Server 2008 Enterprise Edition. We've started using the "Employee Training Scheduling and Materials" template that is available at
    http://www.microsoft.com/government/en-us/campaigns/Pages/SharePoint-Templates.aspx. Till last friday (17th Oct,2013) everything was working fine, but after that we are getting an error "The data source failed to execute the insert command"
    when I click on the "Save" button available on the Registrations.aspx. Could any one help me resolve this issue?
    Kinldy revert if you need more details.
    Though I see many posts regarding this, most of them are associated with Windows Server 2008 R2. So, most of the hot fixes mentioned there could not help me.
    Your help me is greatly appreciated. Thanks for taking time to go through this post.
    Thanks and Regards
    Praveen.
    Thanks and Regards Praveen.

    I have the exact same problem. I updated the 2007 Employee training template to the 2010 version and then 2 months ago, presumably when our Sharepoint had the July 10th patch 14.0.7102.5004 applied, it all broke. An attempt to register for a class always
    comes back with "Failure to execute insert command".
    I tried changing the DateSourceMode from "ListItem" to "List"  that gets rid of the error but does NOT update the registrations list.
    Anyone have any success fixing this?

  • Migration 3.x data source to BI 7 run into problem - Export Datasource

    Dear Expert,
    I have got a problem with the data source replicated from BW 3.5 into BI 7.
    The details are as below:
    - I replicated the BI 7 for a data source 8ZRAC_DSO from BW 3.5
    - after replication, the version of data source remain as Modified
    - I am not able to activate
    - In order to activate it, I try to perform the migration with the option of 'with export'
    - I got stuck with the error message as below:
      'Export DataSource 8ZRA_DSO (BIPCLNT100) in myslef system object type RSDS not possible'
    Do you have any suggestion to resolve this problem?
    Is it a right way to get the data source activated?
    Thanks and appreciated.
    Arthur

    With 7.0 export datasources are obsolete. And the system doesnt allow you to do the migration. Instead you would need to create a transformation between the Original DS/Infosource to the Target.
    Example -
    Updating data from ODS to Cube
    Right click on Data store object-> create transformation ->give the target cube name->give the load option either full or delta-> activate the transformation and load data from ods to cube by clicking execute in third tab
    DTP required between DSO and Infocube to handle DELTAS.
    Edited by: sam hennry on Mar 21, 2008 3:25 PM

  • No SQL Data sources in Essbase 11 EAS on Linux  -- ODBC help

    Hi all,
    Oracle Enterprise Linux 64-bit, Oracle 10.2.0.4 64-bit, Oracle Application Server 10.1.3.1 32-bit, Hyperion 11.1.1.3 32-bit
    While in the Data Prep Editor, I'm trying to create a rules file. however, when I go to File > Open SQL and enter my server/application info, an error is raised: There are no data sources defined. Please create one to continue.
    The contents of my odbc.ini are below. When I run the demoodbc executable (after a . hyperion/products/Essbase/eis/server/is.sh) and connect to the db using my username/password, the connection succeeds and the query runs successfully. But for some reason eas isn't able to use that same odbc connection.
    I have no idea where else to look as far as fixing this issue. None of the data sources that were originally in odbc.ini (the various wire connections, etc) appeared in the open SQL window either, so...?
    Where do I start looking on this?
    Thanks!
    [ODBC Data Sources]
    kcdbnk=KCDBNK on ORCL102
    [kcdbnk]
    QEWSD=40161
    Driver=/app/oracle/product/hyperion/common/ODBC/Merant/5.2/lib/ARora22.so
    Description=KCDBNK on ORCL102
    AlternateServers=
    ApplicationUsingThreads=1
    ArraySize=60000
    CachedCursorLimit=32
    CachedDescLimit=0
    CatalogIncludesSynonyms=1
    CatalogOptions=0
    ConnectionRetryCount=0
    ConnectionRetryDelay=3
    DefaultLongDataBuffLen=1024
    DescribeAtPrepare=0
    EnableDescribeParam=0
    EnableNcharSupport=0
    EnableScrollableCursors=1
    EnableStaticCursorsForLongData=0
    EnableTimestampWithTimeZone=0
    HostName=linux
    LoadBalancing=0
    LocalTimeZoneOffset=
    LockTimeOut=-1
    LogonID=USERNAME
    Password=PASSWORD
    PortNumber=1521
    ProcedureRetResults=0
    ReportCodePageConversionErrors=0
    ReportRecycleBin=0
    SID=ORCL102
    TimestampeEscapeMapping=0
    UseCurrentSchema=1
    WireProtocolMode=1
    Edited by: JustJames on Dec 16, 2009 8:36 PM

    Some posts that may be of use to you
    Re: ODBC.INI - Essbase to Oracle database connection
    Re: How to configure DSN in Linux for use in Essbase?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Where is the UME data source configuration XML file stored on the server?

    I'm trying to activate windows integrated authentication in my portal server.  The java engine's UME configuration has been loaded as a deep AD read only database using the file "dataSourceConfiguration_ads_deep_readonly_db.xml" but I can't find this on my server.  I need to modify a couple of parameters in there to activate kerberos principal management.  My recent portal training course offered me a completed working example but it was for an ads_flat_writeable_db so I can't simply load that and I need to understand the changes required.
    Where to I find the configuration file on my java instance server so I can make the necessary changes to a copy and upload that?

    Try to read
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e1959b90-0201-0010-849c-d2b1d574768b
    UME user data is stored in one or more data sources. Each type of data source has its own persistence adapter. The persistence manager consults the persistence adapters when creating, reading, writing, and searching user management data. Persistence adapters for the following types of repositories are available: 1. Database: See the Product Availability Matrix on SAP Service Marketplace (http://service.sap.com/pam60) for details on which databases are supported. 2. u2022 Lightweight Directory Access Protocol (LDAP) directory: See the Product Availability Matrix on SAP Service Marketplace (http://service.sap.com/pam60) for details on which directories are supported. 3. SAP Systems based on Web Application Server 6.20 You can configure UME to use one or more of these persistence devices in parallel. Users can also be stored in several different physical LDAP directory servers, or in different branches of the same LDAP directory server.

  • Data source change while migrating report to another server

    Hi all.
    I have actually two questions:
    1) How exactly works the data source connection in CR? If I create a package in database and then connect it with my report, what happens in time of creating the report? Does the CR use the current package version stored in DBS or use the package in version when it be connected with report (so it looks like the CR loaded the code inside the report and are resistant to all changes in dbs)? If the second option is right (I think it is, unfortunately), can it be somehow changed?
    2) And now - If I create report and connect it with data source (database package) in development server and then I want just to move the completed and functional report to test server (and then other environments), is there any possibility to change automatically the data source to test server database? Everything is the same on DEV and TEST servers and their databases, except data, of course.
    The imagination that after creating some reports and migrating them to another environment I have to open all of them and manually change the data source is very very bad.
    Thanks for answers!

    Hi Filip,
    I don't think I understand the first question.
    For the second one though, if you want your reports to work seamlessly across environments then you should have your reports connect to the database using an ODBC System DSN.
    Each Envinronment (Dev, Test and Prod) should have the same DSN Name with each DSN pointing to the respective database sever.
    -Abhilash

  • Data Collection Jobs fail to run

    Hello,
    I have installed three servers with SQL Server 2012 Standard Edition, which should be identically installed and configured.
    Part of the installation was setting up Data Collection which worked with out problems on two of the servers, but not on the last where 5 of the SQL Server Agent Jobs fails.
    The jobs failing are:
    collection_set_1_noncached_collect_and_upload
    Message:
    Executed as user: NT Service\SQLSERVERAGENT. The step did not generate any output.  Process Exit Code -1073741515.  The step failed.
    collection_set_2_collection
    Step 1 message:
    Executed as user: NT Service\SQLSERVERAGENT. The step did not generate any output.  Process Exit Code -1073741515.  The step failed.
    collection_set_2_upload
    Step 2 message:
    Executed as user: NT Service\SQLSERVERAGENT. The step did not generate any output.  Process Exit Code -1073741515.  The step failed.
    collection_set_3_collection
    Step 1 message:
    Executed as user: NT Service\SQLSERVERAGENT. The step did not generate any output.  Process Exit Code -1073741515.  The step failed.
    collection_set_3_upload
    Step 2 message:
    Executed as user: NT Service\SQLSERVERAGENT. The step did not generate any output.  Process Exit Code -1073741515.  The step failed.
    When I try to execute one of the jobs, I get the following event in the System Log:
    - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    - <System>
      <Provider
    Name="Application Popup"
    Guid="{47BFA2B7-BD54-4FAC-B70B-29021084CA8F}" />
      <EventID>26</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Task>0</Task>
      <Opcode>0</Opcode>
      <Keywords>0x8000000000000000</Keywords>
      <TimeCreated
    SystemTime="2013-06-04T11:23:10.924129800Z" />
      <EventRecordID>29716</EventRecordID>
      <Correlation
    />
      <Execution
    ProcessID="396" ThreadID="1336" />
      <Channel>System</Channel>
      <Computer>myServer</Computer>
      <Security
    UserID="S-1-5-18" />
      </System>
    - <EventData>
      <Data Name="Caption">DCEXEC.EXE - System Error</Data>
      <Data Name="Message">The program can't start because SqlTDiagN.dll
    is missing from your computer. Try reinstalling the program to fix this
    problem.</Data>
      </EventData>
     </Event>
    I have tried removing and reconfiguring the Data Collection two times using the stored procedure msdb.dbo.sp_syscollector_cleanup_collector and removing the underlying database.
    Both times with the same result.
    Below are the basic information about the setup of the server:
    Does any one have any suggestions about what the problem could be and what the cure might be?
    Best regards,
    Michael Andy Poulsen

    I tried running a repair on the SQL Server installation.
    This solved the problem.
    Only thing is that now I have to figure out the mening of these last lines in the log of the repair:
    "The following warnings were encountered while configuring settings on your SQL Server.  These resources / settings were missing or invalid so default values were used in recreating the missing resources.  Please review to make sure they don’t require
    further customization for your applications:
    Service SID support has been enabled on the service.
    Service SID support has been enabled on the service."
    /Michael Andy Poulsen

  • Change crystal report data source dynamically failed with multi tables report

    hello all
    i have many reports created by someone else on his own machine using same database file i use
    my application use Visual studio 2013 win form with crystal report pack 9
    i use rpt files provided to me
    connect database use OLEDB
    to show form i use below code
    SQLstr = " select what ever  from  table "                      ' defined as Public
    reportName = rpt file path & report name
    showReport()
    public sub showReport()
    reportTable.clear()                                                       ' defined as Public
    DBAdapter = new oleDpdataAdapter(SQLstr,DBconnection)
    DBAdapter.fill(reportTable)
    dim rptDoc as new Crystaldesicin.crystalreports.Engine.ReportDocument
    rptDoc.load(reportName)
    rptDoc.setdatasource(reportTable)
    formRpt.RptViewer.reportsource = rptDoc
    formRpt.showdialog()
    now
    when i use one table report with (select from one table) >>>>> works perfectly
    but when i use report retrieve data from 2 tables and group   data like using
    SQLstr = " select 'table'.'coulumn', 'table2'.'column' ....... etc
    from 'table1'
    INNER JOIN 'table2' ON 'table'.'coulumn' = 'table2'.'column'
    it's not working and formrpt shown but asking for database login
    I noted that in database login window : server name refer to ORIGINAL DATABASE USED BY Report Creator not to my local database
    ================================================
    i tried to set
    rptDoc.datasourceconnection.item(0).setconnection("","databse file path and name", False)
    rptDoc.datasourceconnection.item(0).setlogin("admin","")
    but the same
    using dataset instead of reportTable the same error
    ================================================
    what i missed in this type of reports?
    ( apologize about long take and poor English )

    Hi
    Please have a look at the wiki Troubleshooting Issues with VS .NET Datasets and Crystal Reports.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Can't Create a Data Source - Failed to test connection. [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied

    Hi there,
    I am having a serious issue with The Power BI Data Management Gateway which I am hoping that someone can help me with.
    Basically I am setting a connection between a Power BI demo site and a SQL 2012 Database based on Azure. The Data Management Gateway and is up and running, and Power BI has managed to connect to it successfuly.
    By following the tutorials at
    here I was able to successful create my Data Connection Gateway with a self-signed certificate.
    However, when trying to create the data source I come into problems. The Data Source Manager manages to successfully resolve the hostname, as per the screenshot below:
    Bear in mind that I exposed the require ports in Azure as endpoints and I managed to modify my hosts file on my local machine so I could access the SQL server hosted in Azure using its internal name -- otherwise I would not be able to get this far.
    However the creation of the data source also fails when trying to created it whilst logged in the SQL server in question:
    The Data Source Manager returns the error when using the Microsoft OLE DB Provider for SQL Server:
    Failed to test connection. [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied
    I tried using the SQL Server Native Client 11.0 instead but I also get an error. This time the error is:
    Failed to test connection. Login timeout expiredA network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.Named Pipes Provider: Could not open a connection to SQL Server [53]. 
    Some considerations
    If I provide an invalid username/password, the Data Source Manager does say that the username and password is incorrect.
    Firewall is turned off in the SQL Server (either way, this error also happens if I try top use the Data Source Manager whilst logged in the SQL Server itself).
    SQL Profiler does not show any attempt of connection.
    The SQL server instance in question is the default one.
    The error happens regardless if I select the option to encrypt connection or not.
    In SQL Configuration manager I can see that all protocols are enabled (TCP/IP, Named Pipes and Shared Memory.
    The Event Viewer does not provide any further errors than the one I have copied in this post.
    I'm at a loss here. Could someone please advise what might I be doing wrong?
    Regards,
    P.

    Here is what I had to do to solve this issue:
    Basically I had to add the MSSQL TCP/IP port as an end-point in Azure. After I did that, then I was able to create the data-source. However, I was only able to authenticate with a SQL account, as any domain account would return me an error saying that the
    domain isn't trusted.
    What puzzles me here is how come the Data Source Manager would inform me that an account username/password was invalid, but it would fail/timeout if I provided valid credentials (!?!?!!?)

Maybe you are looking for

  • Getting error message while trying to open any document in the library

    Hello, I am getting the following error message when trying to open any document in the Library. The Workspace name is Contract Lifecycle Management for Public Sector Error System error. Please re-try your action. If you continue to get this error, p

  • Change slideshow size in Fireworks

    hi every body i have created an slideshow with Fireworks, and i have 2 questions: 1: how can i change the dimention of slide show box? it is too small for me. 2: when i click on a photo it will be opened in another window but it is still small, how c

  • Tax Invoice

    Hi How can we have different number ranges for commercial invoices for every state in India for the same company code and sales area? regards Vaibhav

  • Cannot unstuff any files with a .sit extension (stuffit files).

    I have had this new Imac with Leopard since the first of December. (love it, by the way) In the past week I have had people email me .sit files and instead of unstuffing, they opened in Text Edit and are a bunch of code. I just needed to download a "

  • Photo access by apps

    Photo apps, like Art Camera, used to be able to access photo albums on my phone but can't now.  If I go to Privacy/Photos, it doesn't give me the option to allow these programs access.