What needs to be installed on a client machine?

Downloads Documentation Discussion Forums Articles Sample Code Training RSS Resources For
Oracle Data Provider for .NET FAQ
About ODP.NET
I am familiar with SQL Server's .NET data provider, but am new to Oracle. Is it easy to learn to use ODP.NET? (Last Updated: 12/27/04)
What are the different ways Oracle integrates with Microsoft .NET? (7/22/05)
Where can I find ODP.NET help and sample code? (12/12/03)
I have ODP.NET installed, but I can't find the ODP.NET Dynamic Help. Where is it? (4/11/05)
What are the new features in this version of ODP.NET? (7/22/05)
How do I make a feature enhancement request for ODP.NET? (12/04/02)
What features will ODP.NET support in future releases? (12/04/02)
Configuration and Certification
Do I need to install ODP.NET on my Oracle database server? (7/22/05)
Can ODP.NET work with Oracle8, Oracle8i, Oracle9i, and Oracle10g database (DB) servers? Can these DB servers be on Linux or Unix? (7/22/05)
Can ODP.NET be used with an Oracle8, Oracle8i, or Oracle9i Release 1 client? (11/02/04)
What do I need to have installed on my client machine to have ODP.NET work? (11/02/04)
Does ODP.NET support Windows Server 2003, .NET Framework 1.1, and Visual Studio .NET 2003? (11/02/04)
Common Runtime Issues
How do I use distributed transactions with ODP.NET? (3/20/03)
What if I have some applications that require an earlier Oracle client (e.g. using the Microsoft OLE DB Provider for Oracle with Server Explorer)? I want to be able to run both ODP.NET and these other applications from the same machine. (12/12/03)
I get an error: "Unable to load DLL (OraOps.dll)". How do I fix this? (4/23/04)
I want to use the Oracle9i Release 2 version of OraMTS with an Oracle8i database. I get a "No error information available: XACT_E_NOENLIST(0x8004D00A)" error when running an application using OraMTS. (12/04/02)
ODP.NET and Other Oracle Providers for .NET
Are ODP.NET and Microsoft .NET Framework Data Provider for Oracle the same product? (12/12/03)
Which .NET data access driver should I use among ODP.NET, Microsoft .NET Framework Data Provider for Oracle, OLE DB .NET, and ODBC .NET? (12/04/02)
I bundle ODP.NET with an application I've built, which I want to distribute or sell. Does Oracle charge licensing fees for this? (7/16/03)
Q: I am familiar with SQL Server's .NET data provider, but am new to Oracle. Is it easy to learn to use ODP.NET?
A: Yes. ODP.NET inherits from all the ADO.NET base classes, which is what SQL Server's .NET data provider, SqlClient, is based upon. The ADO.NET constructors, methods, and properties that you use with SQL Server will be the same with Oracle. For many applications, the only notable differences will be having all objects that were preceded with "Sql", such as SqlConnection, be preceded by "Oracle", such as OracleConnection, and accounting for differences between Oracle and SQL Server database data types, SQL, and stored procedure calls.
Q: What are the different ways Oracle integrates with Microsoft .NET?
A: Oracle integrates with .NET in a number of ways. For optimized .NET data access, ODP.NET enables access to all of the Oracle database's advanced features, such as RAC and XML DB, while ensuring the fastest performance from the .NET Framework.
For .NET development tools that make Oracle easier to use, the Oracle Developer Tools for Visual Studio .NET provide wizards and designers that auto-generate ODP.NET code and can browse and edit schemas and stored procedures. Additionally, it includes a Data Window to modify and view data and context-sensitive help.
Beginning with Oracle Database 10g Release 2, developers can build and deploy .NET stored procedures for their Oracle database.
For application integration, web services can facilitate integration between your existing Oracle and .NET applications.
Q: Where can I find ODP.NET help and sample code?
A: ODP.NET documentation is available from within Visual Studio .NET using Dynamic Help. Just hit the F1 key when your cursor is on an ODP.NET API and a help page for that API will appear right within Visual Studio .NET.
Additional ODP.NET documentation is available both locally installed and from the ODP.NET documentation page.
Sample code can be found both locally as part of the ODP.NET installation (e.g. c:\oracle\<Oracle Home Name>\ODP.NET\samples) and on ODP.NET samples page.
ODP.NET users can ask questions on the ODP.NET discussion forum.
Q: I have ODP.NET installed, but I can't find the ODP.NET Dynamic Help. Where is it?
A: This behavior sometimes occurs when installing new Visual Studio .NET versions over an ODP.NET installation. To enable ODP.NET Dynamic Help, go to Visual Studio .NET Combined Help Collection Manager located in Visual Studio .NET 2002 or Visual Studio .NET 2003. Make sure the box next to the Oracle Data Provider for .NET Help is checked and click on the Update VSCC button. Close Visual Studio .NET and re-open it to enable ODP.NET Dynamic Help.
Note: Because of security restrictions, you may need to copy and paste the links above to a browser, rather than clicking on them. Once copied to a local browser, if you have a Windows service pack that prevents active content (e.g. Windows XP service pack 2), you will need to allow active content to view the complete page. To do this, click on the yellow bar at the top of the Visual Studio .NET Combined Help Collection Manager page, which indicates active content has been blocked. Select "Allow Blocked Content". A security warning will show up. Click "Yes" and you will be able to view the page in its entirety, including having the option to incorporate the Oracle Data Provider for .NET Help into Visual Studio .NET.
Q: What are the new features in this version of ODP.NET?
A:
ODP.NET 10.2.0.1.0
Server-side ODP.NET for .NET stored procedures
RAC client-side connection load balancing and automatic connection cleanup
Database Change Notification
LOB and LONG retrieval - faster data retrieval, InitialLOBFetchSize can be up to 2GB, and full LOB functionality when InitialLOBFetchSize > 0 (i.e. GetOracleClob and GetOracleBlob methods are enabled). These same features are now enabled with LONGs with its respective APIs.
Connection Pool Management - explicitly clear connection pool(s)
Client Identifier property for supporting application context security, such as with VPD
Input REF Cursor parameters
ODP.NET 10.1.0.3.0
Statement caching
DeriveParameters - automatic population of stored procedure parameters
Cancel long running queries
ADO.Net 1.1 interfaces - HasRows and EnlistDistributedTransaction properties
LOB and LONG retrieval - Entire LOB and LONG column data can be retrieved even if the select list does not contain a primary key, ROWID, or unique key.
ODP.NET 10.1.0.2.0
Grid support
Schema-based XMLType
BINARY_FLOAT and BINARY_DOUBLE datatypes
Multiple Oracle Homes
ODP.NET 9.2.0.4.01
Improved XML DB and XMLType support
PL/SQL associative arrays
connection pool validation
InitialLOBFetchSize property to improve LOB retrieval performance
Q: How do I make a feature enhancement request for ODP.NET?
A: You can contact Oracle Support or use the ODP.NET discussion forum to make an enhancement request.
Q: What features will ODP.NET support in future releases?
A: In general, Oracle does not discuss features in future product releases until the release date nears. We are well aware of enhancement requests made through the ODP.NET discussion forum and Oracle support. We encourage Oracle users to continue to make their requests known. Oracle will do its best to fulfill these requests in future releases.
Q: Do I need to install ODP.NET on my Oracle database server?
A: No. You only need to install ODP.NET for running client or middle-tier .NET applications. The exception is if you are using .NET stored procedures in the database server. The server-side ODP.NET provider will automatically be installed with the Oracle Database Extensions for .NET.
Q: Can ODP.NET work with Oracle8, Oracle8i, Oracle9i, and Oracle10g database (DB) servers? Can these DB servers be on Linux or Unix?
A: Yes and yes. Oracle clients can support older and newer versions of the Oracle database. Consult the Oracle on Windows FAQ for more information.
Oracle clients on Windows can work with Oracle database servers on any platform.
Q: Can ODP.NET be used with an Oracle8, Oracle8i, or Oracle9i Release 1 client?
A: No. You need to use the Oracle9i Release 2 or higher client.
Q: What do I need to have installed on my client machine to have ODP.NET work?
What needs to be on a client machine when running an application compiled with the 10g ODP.NET?
The FAQ states the following :-
A: You will require the following:
Windows 2000, Windows XP Professional, or Windows Server 2003
Microsoft .NET Framework 1.0 or higher
Oracle9i Client Release 2 (9.2) or higher
Oracle Net Services (included with the client)
Oracle Services for Microsoft Transaction Server, Release 2 (9.2) or higher. This is required for applications using distributed transacations.
This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
I'd be very grateful for anyone who can clear up my confusion.
Mick

This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
ODP.NET needs to be installed on the client. OraOps9.dll is part of ODP.NET, not the Oracle Client.
Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
If an application is built with 10g ODP.NET, it can be run with 9.2 ODP.NET as long as you do not use any 10g APIs. The new features in 10g ODP.NET are included in the doc and the ODP.NET FAQ for your reference.

Similar Messages

  • Force installing jmf on client machine

    dear friends,
    i need to install jmf on client machine through my web application.
    it will automatically detect if the client machine has jmf installed.
    if jmf is not installed, it will be installed by the web application itself.
    can anybody suggest a solution??

    Hi Harry,
    We are also in a similar fix to install JMF silently with a Streaming product. In a nutshell, we would like JMF to be installed when he invokes our setup.exe with out going through all the screens which conventional JMF installation does. Any suggestions??
    Thanks in advance for your time and help.
    Sri

  • Can Web Start call earlier installed versions on client machine?

    Can Web Start invoke earlier installed versions of the
    JRE on a client machine, without invoking a download?
    I ask because I have tried to so, unsuccessfully,
    using the versions attribute of the j2se element.
    In the usenet thread 'Jar test, with 1.4 VM?',
    Usenet Message ID:
    [email protected]
    http://groups.google.com/groups?selm=1170640609.025666.236030@s48g2000cws.googlegroups.com
    (follow the Google link at the top, to the thread)
    I was attempting to confirm that a Jar file I
    was deploying, was 1.4 compatible.
    The test failed, because despite that the (1)
    user who attempted it had a working 1.4.2 install,
    the JNLP file (which declared version='1.4'),
    was prompting for a download. The user was
    not prepared to do that, understandably -
    that was exactly what I was trying to avoid
    doing, myself.
    Since then, I did further testing locally -
    trying to get a 1.5 launch when my current
    Java is 1.6 - I have a number of 1.5 versions.
    No request for '1.5', '1.5.0_08' or '1.5*' worked
    (OK - that last one was just a WAG*), every time
    I was prompted for download (which also failed,
    as an aside!).
    What am I getting wrong?
    Do I misunderstand the intent of the j2se element
    finding earlier verions? Is it only versions that
    were installed by web start?
    Is my understanding of how to use the version
    attribute, incorrect?
    * Where are the detailed instructions on the
    allowable forms of the version attribute?
    Neither the spec. nor developers guide seem
    to go into it in any detail. Some of the forms
    I have seen around the forum were (AFAIR)..
    <!-- Suggests 1.4 preferred? -->
    version="1.4 1.5+"
    <!-- Suggests 1.4 only? -->
    version="1.4"
    <!-- Suggests 1.4.2 preferred, if microversion
    13+ is found, else 1.5+? -->
    version="1.4.2_13+ 1.5+"FWIW - here is the JNLP I am currently using
    for the test, it is 'live and public'..
    <?xml version='1.0' encoding='UTF-8' ?>
    <!--
    If you see this message in your browser, it means the
    browser is not correctly set up to handle the JNLP file
    type, that launches Java applications within a secure
    environment, that cannot access your computer, or data.
    To get the browser (and PC) correctly set up to handle
    this type of file, visit ..
      http://www.java.com/
    ..to install the free, secure, Java Plug-In made
    by Sun Microsystems.
    -->
    <jnlp spec='1.0'
        codebase='http://www.athompson.info/family/'
        href='thompson-1.4.jnlp'>
      <information>
        <title>Thompson Family Genealogy</title>
        <vendor>Andrew Thompson</vendor>
        <description kind='one-line'>
          The ancestors of William Robert Ramshaw Thompson
        </description>
        <offline-allowed />
        <shortcut online='false'>
          <desktop/>
        </shortcut>
      </information>
      <resources>
        <j2se
          version="1.4"
          href="http://java.sun.com/products/autodl/j2se" />
        <jar href='genj-applet.jar' main='true' />
      </resources>
      <applet-desc
        main-class='genj.applet.Applet'
        name='genealogy'
        codebase='./index.html'
        width='300'
        height='170'
        >
          <param name='GEDCOM' value='thompson.ged' />
          <param name='ZIP' value='thompson.zip' />
      </applet-desc>
    </jnlp>

    Using your tips, I was able to find the 1.5
    JRE's listed in the Java control panel
    (of an XP Pro box) and see they had no
    checkmark for 'enabled'.
    After enabling 1.5.0_08, I was successfully
    able to launch the application (OK - applet
    really) using the 1.5.0_08 JRE.
    Thanks.
    As an aside, I had to specify '1.5.0_08'
    exactly to get that JRE. This is fine for
    local testing, but sometimes it is handy
    to ask others to help test via the web,
    and it would be nice if I could make it less
    specific (e.g. '1.5', to get any installed
    and enabled JRE that is a 1.5 variant)
    Do I understand wrong? Should that work,
    to specify '1.5' and get a '1.5.0_08' JRE that
    is installed and enabled?

  • How check is installed jre on client machine (Windows, Mac, Linux) ?

    I have desktop appliaction that installed in client machine. On client machine OS maybe are :Windows, Mac or Linux. When first start my desktop application I want to check is exist jre on client machine. Is this a good solution?
              String javahome = System.getProperty("java.home").trim();
              if (javahome.length() == 0) {
                   logger.warn("Not installed java!");
              } else {
                   logger.trace("java home=" + javahome);
              }

    Errr using Java to check if Java is installed?
    Does not compute.
    Perhaps you want to use some sort of installer program. Or [_webstart_|http://java.sun.com/javase/technologies/desktop/javawebstart/overview.html]?

  • CRVS2010 Beta - Cannot find documentation on what needs to be installed

    My question is very elementary but I do not see anything in the release notes, etc. that tells me which of the 3 install files I need to iinstall or do I need to install all of them.
    1 - SAP Crystal Reports, version for Visual Studio 2010
    2 - SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit)
    3 - SAP Crystal Reports runtime engine for .NET Framework 4 (64-bit)
    I want access to the WPF component in VS 2010 on a Win 7 64bit machine
    Do I install all 3?? In what order? 1 - 2 - 3 as I've shown?
    I have Crystal 2008 installed on my machine. Must I uninstall it to use the Crystal VS 2010 beta on that machine.
    To date I tried installing just #1 above. I went into my VS 2010 selected the WPF and it blew up VS 2010, I tried doing the same with Winform and it also took out VS 2010.
    I have since uninstalled everything. Could someone explain the procedure(s) for making the beta available to VS 2010 with a little more detail.
    Thanks

    Hi,
    You might want to check this [thread|Re: CRVS2010 Beta - about downloading file].
    Thanks,
    Saurabh

  • List of Installed programs at Client machine

    How one can detect the list of programs installed on PC

    Belarc has a free program, Belarc Advisor, that does that.

  • How do I install (just the required assembles without server licence) client library to a client machine so that I can invoke SSIS/SSAS 2012 remotely?

    We are trying to figure the easiest way to install client lib on a machine to call SSIS/SSAS remotely (to a SQL Server 2012).
    We have some .net code referencing SMO/AMO and Microsoft.SqlServer.Management.IntegrationServices.
    1) For SMO, I found out this and it is quite clear about how to install on a client machine:
    Installing SMO (SQL Server Management Objects (SMO))
    http://msdn.microsoft.com/en-us/library/ms162189(v=sql.110).aspx
    2) For AMO (analysis management object), I found out this but I did not see a clear instruciton of what and how to install on the client machine:
    http://technet.microsoft.com/en-us/library/ms124924(v=sql.110).aspx
    3) For SSIS call, I did not find anything talking about the client installation.
    Can someone help us?
    Thanks.

    Hi Sofiya,
    Thank you so much for your help.
    For SSIS call, we are using 
    Microsoft.SqlServer.Management.IntegrationServices.dll
    to call package deployed to SSISDB catalog at remote server using some .net codes.
    I have few questions:
    1) What is the difference between
    Microsoft.SqlServer.Management.IntegrationServices.dll
    and the dll you mentioned:
    Microsoft.SqlServer.IntegrationServices.Server.dll
    2) If we install SSMS, can we also get Microsoft.SqlServer.Management.IntegrationServices.dll? Put another way, if we install SSMS, will Microsoft.SqlServer.Management.IntegrationServices.dll be registeredin GAC?
    3) If we install  Microsoft.SqlServer.Management.IntegrationServices.dll at client machine, I assume we don't need to licence it. (Note: SSIS package itself will be running from the remote server, NOT the client machine which is used to invoke
    the SQL 2012 packages).
    Best regards,
    Steven Rao
    Hi Steven Rao,
    Yes, you are right. When you want to start a SSIS 2012 package from a .Net application,
     you need to reference the assembly of Microsoft.SqlServer.Management.IntegrationServices .dll. The Microsoft.SqlServer.Management.IntegrationServices namespace contains the classes and interfaces to manage the Integration Services catalog
    on an instance of SQL Server. It is only available in the GAC. For more information, see:
    http://microsoft-ssis.blogspot.com/2013/01/call-ssis-2012-package-within-net.html
    I also do a test, if you  install the media of SQL Server Management Studio, usually, these assemblies are located in following folder as screenshot.
    In the folder,  C:\Windows\assembly
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • What needs to be in my jndi.properties file to get oracle accessed by a jndi client

    I am trying to write a connection pool class that use jndi
    to locate the data base. I use "bindds" bind my OracleDataSource
    object with the name of 'test/jdbc/test'. I should then be able to do a lookup like: OracleDataSource ods =
    (OracleDataSource) ctx.lookup (test/jdbc/test)
    All Oracle code examples use (Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.fscontext.RefFSContextFactory");
    Is this correct? And what other things should be in my jndi.properties file to access the naming service with comes with
    Oracle (Jserver)? For example to I need to include a Context.PROVIDER_URL value. I would think Oracle would have some
    standard way of accessing its own Naming service. Thanks David

    This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
    ODP.NET needs to be installed on the client. OraOps9.dll is part of ODP.NET, not the Oracle Client.
    Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
    If an application is built with 10g ODP.NET, it can be run with 9.2 ODP.NET as long as you do not use any 10g APIs. The new features in 10g ODP.NET are included in the doc and the ODP.NET FAQ for your reference.

  • What needs to be configured on a webstart client pc

    Hi there,
    Here is my problem: I have a J2SE application which is being deployed with WebStart. Everthing works fine for me and most of the users: They click on a link to the JNLP-File, their Internet Explorer pops up and immediately Java WebStart starts and the application gets loaded. Unfortunately one of the key users has an issue here: When he clicks on the link, the Internet Explorer pops up, closes and ... nothing happens. WebStart simply doesn't get started. When I start the app via javaws.exe http://myurl.jnlp everything works fine. So this is, what I already checked:
    - Webserver config is fine, it works properly from other clients
    - Java config should be fine, starting the app manually via WS works
    - IE seems to know the mime-type jnlp (it doesn't simply show the contents of the file)
    - .jnlp is also linked to javaws.exe
    I'm running out of ideas what my problem could be...
    Best,
    Daniel

    This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
    ODP.NET needs to be installed on the client. OraOps9.dll is part of ODP.NET, not the Oracle Client.
    Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
    If an application is built with 10g ODP.NET, it can be run with 9.2 ODP.NET as long as you do not use any 10g APIs. The new features in 10g ODP.NET are included in the doc and the ODP.NET FAQ for your reference.

  • I need to install a font on clients machine  please help....

    Hi
    My requirement is that i want to install a font on clients machine iam using jsp and how do i check if the font is already installed.
    Please help me 2 meet the deadlines.
    Thanks

    hi,
    If you are using english language and need other font to display something special character you have to provide link to the font file.
    else you have to write applet to install font on client machine. then there are other issues like you should have the applet signed.
    If you have seen some multiligual sites like japanese. those site use html encoding for that. like Shift_JIS. Due to this the browser sets that perticular font and shows the page. If the font is not installed then it connects to the download center and download the font and install the font.
    Thanks
    vivek

  • What drivers need to be installed on a target in order to run an executable that uses USRP VIs?

    I'm having trouble running a build executable using the USRP VIs on a target machine.  What drivers do I need to install to get this to work?
    Robert C. Mortensen
    Certified LabVIEW Architect
    Certified LabVIEW Embedded Systems Developer
    Endigit

    Thanks for your help, Sam.
    My VIs aren't runnable because they are missing dependencies, including usrp.dll.
    I'm using USRP-2930 with LabVIEW 2013 and TestStand 2013.
    So the NI-USRP 1.2 driver needs to be installed on the target machine as a separate install, even though it appears to be a development install?
    Whenever I deploy code to a target machine, I build the executable (which includes any code dependencies, including certain dlls, which it puts in the "Data" directory by default) and then build an installer, which optionally includes all the necessary drivers and LabVIEW Run-time Engine.  I've never run into anything that falls outside this process, like it appears the NI-USRP driver does.  It doesn't seem to get pulled into the executable as a dependency and doesn't show up in the list of includable installers when building an installer in LabVIEW.
    I'll try out the NI-USRP 1.2 driver install on the target machine and see if that fixes the problem.
    This situation creates a further problem when trying to create a deployment install from TestStand.  Since the dependencies aren't automatically pulled in, TestStand detects that the VIs are now broken and aborts the install.  How do I get around that problem?
    Thanks again,
    Robert
    Robert C. Mortensen
    Certified LabVIEW Architect
    Certified LabVIEW Embedded Systems Developer
    Endigit

  • Creating a service ; What needs to be added to tnsnames.ora and JDBC url?

    DB version: 11.2.0.2
    OS platform : Solaris 10
    We have a 2 node RAC.
    DB name   = mbsprd
    Instance1  = mbsprd1
    Instance2  = mbsprd2I want Instance 1 (mbsprd1) to be used for our OLTP application and Instance 2 (mbsprd2) to be used for another application of DSS nature.
    Based on the syntax
    srvctl add service -d <dbname> -s <ServiceName> -r <Preferred Instance> -a <Available Instance>I am going to create 2 services
    -- Creating a service called OLTP
    srvctl add service -d mbsprd -s OLTP  -r mbsprd1 -a mbsprd2-- Creating a service called DSS
    srvctl add service -d mbsprd -s DSS  -r mbsprd2 -a mbsprd1-- Starting the services
    srvctl start service -d mbsprd -s OLTP
    srvctl start service -d mbsprd -s DSSI guess the above steps are enough to configure a service at the server side.
    I would like to know what needs to be done at the client side.
    Currently the tnsnames.ora file and JDBC url used by our clients are shown below. What needs to be added to tnsnames.ora file and jdbc URL to start using services configured above?
    -- SCAN based TNS entry
    mbsprd =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (COMMUNITY = tcp.world)
            (PROTOCOL = TCP)(Host = p148149-scan.tpam.net) (Port = 36964))
        (CONNECT_DATA =
          (SERVER       = DEDICATED)
          (SERVICE_NAME = mbsprd)
          (FAILOVER_MODE=(TYPE=SELECT)(METHOD=BASIC))
    -- TNS entry based on local listener
    -- Instance 1
    mbsprd1 =
    (DESCRIPTION =
       (ADDRESS_LIST =
       (ADDRESS =(PROTOCOL = TCP)(HOST = hsolarp148-vip)(PORT = 36973))
       (CONNECT_DATA =
             (SERVICE_NAME = mbsprd)
             (INSTANCE_NAME = mbsprd1)
    -- Instance 2
    -- TNS entry based on local listener
    mbsprd2 =
    (DESCRIPTION =
       (ADDRESS_LIST =
       (ADDRESS =(PROTOCOL = TCP)(HOST = hsolarp149-vip)(PORT = 36973))
       (CONNECT_DATA =
             (SERVICE_NAME = mbsprd)
             (INSTANCE_NAME = mbsprd2)
    )JDBC entry for RAC
    jdbc:oracle:thin:@p148149-scan.tpam.net:36964:mbsprd -- Alternative version used by some clients because the above had 'some issues'
    jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=TCP)(HOST=p148149-scan.tpam.net) (PORT=36964))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=mbsprd)(FAILOVER_MODE =(TYPE = SELECT)(METHOD = BASIC)(RETRIES = 180)(DELAY = 10))))

    OLTP =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = p148149-scan.tpam.net)(PORT = your_port_number))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = OLTP)
    DSS =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = p148149-scan.tpam.net)(PORT = your_port_number))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = DSS)
      )JDBC entry for RAC
    jdbc:oracle:thin:@p148149-scan.tpam.net:36964:service_name
    jdbc:oracle:thin:@new_tns_entry_description(if you would like to connect the database with particular service)
    try this and let us know any issues,

  • Starfrfc.exe : Does SAPGUI need to be installed too?

    Hi.
    In the context of an interface, we are looking to use startrfc.exe to runa RFC enables function module.
    Now, simple question.
    Does SAPGUI have to be installed on the machine that runs the startrfc.exe ? Because at this point, startrfc.exe runs fine only from a machine with the sapgui.
    If not, can you tell me what needs to be installed? We would like to avoid installing the GUI on that particular machine.
    Thanks.

    just as an update- as it turns out, I did not include the MAX config support installer this last time and my software and hardware currently seem to be working great.  I am now in the process of trying to slim down the services and startup activity to speed up boot time.
    Right now my issue is as follows:
    After putting my exe alias into the startup folder on the xpe target, it takes almost 5 minutes for the exe to load (including bootup)- AND my hardware does not work.  If I close the exe and re-run it, it seems to run fine.
    So now perhaps theres an issue with the order of services/programs executed on startup.
    If anyone has any insight or suggestions on how to go about this- I'd appreciate it.
    I did manage to get msconfig running on the target as well, but it seems most of the NI services are dependent on one another and if you disable more than one or two, you kill communication between them and stuff like that.
    thanks for any ideas
    -pat

  • ActiveXCrystalReportViewer install in a client pc

    I added the ActiveXreportviewer to an application in visual basic vs2008 for windows. Everithing is fine when i run it in my pc. I created a setup to install the dlls of this viewer in the client machine. But when the report is showned the buttons on the toolbar appairs without image.
    Do you know what i have to install in my clients to show them? or there is a setup already for the instalation in clients?

    Hi, you might wanna post this over in the Crystal forums.

  • What needs to configured to support UserName Token Profile for WS Security

    Hi,
    Using Weblogic 8.1. Have a bunch of web services. Want to support a UserName Token Profile thru Identity assertion. If we use the default authenticator and defaut Identity assertor will it work ? We'll configure the username / pwd thru WebLogic console for the realm.
    Thanks

    This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
    ODP.NET needs to be installed on the client. OraOps9.dll is part of ODP.NET, not the Oracle Client.
    Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
    If an application is built with 10g ODP.NET, it can be run with 9.2 ODP.NET as long as you do not use any 10g APIs. The new features in 10g ODP.NET are included in the doc and the ODP.NET FAQ for your reference.

Maybe you are looking for

  • For family members over 13, how can I require permission to purchase an app

    i am now using family share for my teenage boys.   It seems their Apple ids list them as an adult.  How can I make it so they are required to get permission when. Purchasing an app. Right now they are linked to my credit card but I do not get that al

  • Sap pi b2b add-on

    Hello We are currently planning on getting on SAP PI B2B ADD-ON. Currently we generate the EDI formatted file using file content conversion in the receiver file adapter. It is a very laborious task. Does getting the B2B ADD-ON eliminate the file cont

  • Need help with iPad 2 web page access requiring Adobe Flash Player

    New to apple have iPad 2 WiFi and need to access web pages that utilize adobe flash player what are my options since adobe and apple are not friends

  • How to prevent heap zone errors in iMovie'11

    How to prevent heap zone errors before or during a new iMovie11 project

  • .ipsw file in my trash?

    I just happened to look in my trash and noticed that this file was there: iPhone3,14.3_8F190Restore.ipsw I never deleted any files like this, so I don't know how it ended up there. I have an iPhone 4 that has been running ios 4.3 since it came out bu