Installing OLEDB Provider (10.2.0.3) for use in creating SQL Linked Servers

I've installed the Oracle OLEDB Provider (version 10.2.0.3) on my SQL Server 2005 box (Windows 2008 64-bit). However, when I reboot the server after install I do not see the OraOLEDB.Oracle provider in my list of providers available to use to create a linked server to the Oracle database.
Could someone help steer me in the right direction?
Thanks!!

Hi,
This forum is for links from Oracle to non-Oracle databases. For issues with connectivity to Oracle using ODBC/OLEDB it would be better to ask the question in the ODBC forum -
ODBC
They have the experience of connections to Oracle and the software involved.
Regards,
Mike

Similar Messages

  • I just install LRCC completed but can't open for use.

    I just install LRCC completed but can't open for use.

    We have several PC's in the union office. As a test I got on the one Mac (in fact I'm on it now). Disconnected the network cable and got to this page via the wireless connection.
    I am the computer guru for the union (but there is a network guy). This computer is connected to the same network, same password, nothing special.
    I added the iPhone MAC address to the router just this morning. I got on the first web page I went to but that was all it did all day.
    Rebooted the router twice and unplugged and reset once.
    Mike

  • Installing OLEDB Provider 8.1.7.2 on Oracle 8i DB 8.1.6.0

    After I install 8.1.7.2 OLEDB Provider on a previously installed Oracle 8i DB with ver 8.1.6.0 (without 8.1.6.0 OLEDB Provider), I am unable to start the database. I am able to start the listener. However, I am getting an error message saying that Oracle is not able to find orannms8.dll on my PC.
    Did anyone install 8.1.7.2 or 8.1.7.3 OLEDB Provider on previously installed 8.1.6.0 DB?
    Any help is really appreciated.

    Hi David,
    putting a tablespace in begin backup mode has the following
    affect:
    1. freeze the header of the files (only the header)
    2. copying the whole database blocks into redo log ( and not only
    the change vectors), because you need the whole block for
    recovery.
    That's it. The database is still writing in these files.
    Thomas

  • Can anyone provide me with an lm317T for use in a power supply project

    I'm trying to simulate a power supply for a college project and need an lm317T.  Can anyone provide this in order to add it to my circuit.  I'm not worried about adding it to my database.

    Hi Steve,
    I googled "LM317T SPICE model" and found this website, someone posted the model for this part
    http://www.electro-tech-online.com/general-electronics-chat/18270-lm317-spice-model.html
    Now that you have the model, you can create you own component in Multisim.  If you don't know how, please refer to this page:
    http://zone.ni.com/devzone/cda/tut/p/id/3173
    Tien P.
    National Instruments

  • Adding new element to BPEL for use in PL SQL type, has binding errors

    Figured I might as well post this here since I haven't gotten a single reply in 3 days anywhere else :/
    I have a BPEL service that calls a PL SQL procedure. I have added a new element to the BPEL called quote_cart_line.
    All I had to the BPEL to accomplish this was edit 3 files -
    Async_Invoke_Import_Model.xsd (Source)
    <element name="orig_sys_line_ref" type="integer" minOccurs="1" nillable="true"/>
           <element name="quote_cart_line" minOccurs="1" nillable="true" type="integer"/>
          </sequence>
    .....APPS_NI_MODEL_IMPORT_UTIL_IMPORT_SELECTIONS.xsd (Target)
    <element name="ORIG_SYS_LINE_REF" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
             <element name="QUOTE_CART_LINE" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
          </sequence>
    .....Transform_NIE_Inputs.xsl (Transforming from Source to Target)
    <ns1:orig_sys_line_ref>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:orig_sys_line_ref"/>
            </ns1:orig_sys_line_ref>
            <ns1:quote_cart_line>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:quote_cart_line"/>
            </ns1:quote_cart_line>
          </ns1:import_line>
    .....I have done this to two other BPELs and they work fine. (1st BPEL calls the second BPEL passing this new element, which then passes it to this BPEL I am having trouble with, which then should be binding it to a PL SQL type)
    So this BPEL calls a PL SQL procedure, binding the elements from the BPEL to a PL SQL type (ni_model_import_line). So I edited the PL SQL type to accept this new parameter:
    orig_sys_header_ref       NUMBER,
           quote_cart_line           NUMBER,
           CONSTRUCTOR FUNCTION ni_model_import_line(p_part_number                IN VARCHAR2,
    MEMBER PROCEDURE add_orig_sys_header_ref(p_org_sys_header_ref          IN NUMBER),
           MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER)
    MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER) IS
    BEGIN
       quote_cart_line := p_quote_cart_line;
    END add_quote_cart_line;
    END;
    .....I invoke all of this, and the new element gets populated in 3 different BPELs, including this one I explained here. But when it comes time to call the PL SQL I am now getting an error:
    <fault>
    -<bpelFault>
    <faultType>0</faultType>
    -<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'nie_import_2' failed due to: Interaction processing error.
    Error while processing the execution of the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API interaction.
    An error occurred while processing the interaction for invoking the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API. Cause: java.lang.NullPointerException
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.
    </summary>
    </part>
    -<part name="detail">
    <detail>null</detail>
    </part>
    -<part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>This doesnt happen if I remove the references to this new element and try again, so it obviously is a problem with the element, but I have no idea what it is. It works fine when going from BPEL to BPEL, but as soon as the process tries to call the PL SQL procedure this happens. It is even more frustrating because I have done this exactly before adding another element, and it worked fine...
    Any ideas or tips please?

    Figured I might as well post this here since I haven't gotten a single reply in 3 days anywhere else :/
    I have a BPEL service that calls a PL SQL procedure. I have added a new element to the BPEL called quote_cart_line.
    All I had to the BPEL to accomplish this was edit 3 files -
    Async_Invoke_Import_Model.xsd (Source)
    <element name="orig_sys_line_ref" type="integer" minOccurs="1" nillable="true"/>
           <element name="quote_cart_line" minOccurs="1" nillable="true" type="integer"/>
          </sequence>
    .....APPS_NI_MODEL_IMPORT_UTIL_IMPORT_SELECTIONS.xsd (Target)
    <element name="ORIG_SYS_LINE_REF" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
             <element name="QUOTE_CART_LINE" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
          </sequence>
    .....Transform_NIE_Inputs.xsl (Transforming from Source to Target)
    <ns1:orig_sys_line_ref>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:orig_sys_line_ref"/>
            </ns1:orig_sys_line_ref>
            <ns1:quote_cart_line>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:quote_cart_line"/>
            </ns1:quote_cart_line>
          </ns1:import_line>
    .....I have done this to two other BPELs and they work fine. (1st BPEL calls the second BPEL passing this new element, which then passes it to this BPEL I am having trouble with, which then should be binding it to a PL SQL type)
    So this BPEL calls a PL SQL procedure, binding the elements from the BPEL to a PL SQL type (ni_model_import_line). So I edited the PL SQL type to accept this new parameter:
    orig_sys_header_ref       NUMBER,
           quote_cart_line           NUMBER,
           CONSTRUCTOR FUNCTION ni_model_import_line(p_part_number                IN VARCHAR2,
    MEMBER PROCEDURE add_orig_sys_header_ref(p_org_sys_header_ref          IN NUMBER),
           MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER)
    MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER) IS
    BEGIN
       quote_cart_line := p_quote_cart_line;
    END add_quote_cart_line;
    END;
    .....I invoke all of this, and the new element gets populated in 3 different BPELs, including this one I explained here. But when it comes time to call the PL SQL I am now getting an error:
    <fault>
    -<bpelFault>
    <faultType>0</faultType>
    -<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'nie_import_2' failed due to: Interaction processing error.
    Error while processing the execution of the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API interaction.
    An error occurred while processing the interaction for invoking the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API. Cause: java.lang.NullPointerException
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.
    </summary>
    </part>
    -<part name="detail">
    <detail>null</detail>
    </part>
    -<part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>This doesnt happen if I remove the references to this new element and try again, so it obviously is a problem with the element, but I have no idea what it is. It works fine when going from BPEL to BPEL, but as soon as the process tries to call the PL SQL procedure this happens. It is even more frustrating because I have done this exactly before adding another element, and it worked fine...
    Any ideas or tips please?

  • Looking for a Status for Bug 12586745 - CREATE BOOKMARK LINK IGNORES REPORT

    Back in May we had opened an SR with Oracle, and
    they assigned our SR to Bug 12586745 - CREATE BOOKMARK LINK IGNORES REPORT PROMPTS
    Where can I find more information on this BUG and possible solutions to it
    Please let me know where can I fidn this information
    Thank ou

    I don't understand what you want. Do you want a link that will download a Dashboard to Excel? Why do you want to replace the "Create Bookmark..." link? What's that got to do with your requirement?

  • OLEDB Provider for Teradata - 64 bit

    Hi,
    We want to install OLEDB Provider for Teradata - 64 bit in Windows Server 2012 for SharePoint 2013 Excel Services connection refresh.
    Please let us know from where to download them.
    Thanks in advance.
    Regards
    K.V.B.Gururaaja

    Hi Gururaaja,
    Here is an article of Data Sources Supported in PowerPivot Workbooks which includes Teradata relational databases (Teradata V2R6, V12), you can take a look.
    https://msdn.microsoft.com/en-us/library/gg399082(v=sql.110).aspx
    http://blogs.technet.com/b/excel_services__powerpivot_for_sharepoint_support_blog/archive/2012/12/21/powerpivot-for-sharepoint-scheduled-refresh-to-oracle-ibmdb2-sql-en-us.aspx
    And I find Teradata OLE DB Provider from the below link, please take a look, and also I would recommend you post this question in teradata forum for more accurate information and better assistance.
    http://downloads.teradata.com/download/connectivity/ole-db-provider
    http://forums.teradata.com/forum/connectivity/ssis-2012-ole-db-teradata-provider-tdoledb-1
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have
    feedback for TechNet Subscriber Support, contact [email protected]
    Daniel Yang
    TechNet Community Support

  • Multiple Recordsets and the Oracle OleDB Provider

    We are trying to return multiple recordsets from an Oracle SP through the Oracle oledb provider using VB. First of all, is this possible and is there any example code out there. Having trouble finding some info on this.
    Thanks

    After reading install guide I figured out waht might be the problem.
    I put OLEDB install into the same home (ora81).
    It was suppose to go into different home directory (ora92).
    Also, OLEDB is one of few components which can't exist in more then one
    home dir on single machine. Installer knows that, and skips install of
    OLEDB provider itself. So in my case I had to first uninstall OLEDB provider 8.1.7
    and then install OLEDB provider 9.2
    Thanks,
    ...dejan

  • Connecting to 8i with the latest OLEDB Provider

    Hello
    I would like to know if the latest OLEDB Provider (shipper with 10g) can be used to connect to a 8i database server.
    Thanks a lot.

    OraOLEDB 10g support Oracle 8i DB.

  • Provider not listed in Linked Servers Providers (Visual FoxPro Ole db)

    I'm trying to set up a linked server to a VFP database.  I have downloaded, and installed "Microsoft OLE DB Provider for Visual FoxPro 9.0"  I did read the Installation instructions about previous versions - there were none.  
    After installing, I launched SSMS and tried to create a Linked Server, but the VFP Provider is not listed.
    I made sure the vfpoledb.dll was registered by running 'regsvr32.exe fpoledb.dll'. Launched SSMS - Provider still not listed.
    I have uninstalled and re-installed the OLE DB Provider. Logged in as Administrator. SQL Server 2012
    What do I need to do to get VFP to show up in the Providers list?
    Thanks,
    Mike

    Hi mbailey218,
    Since you didn't mention your SQL Server 2012 is 32-bit or 64-bit, I assumed it as a 64-bit version.
    Did you download the Microsoft OLE DB Provider for Visual FoxPro 9.0 from
    here? It is a 32-bit oledb provider which means it can work with 32-bit SQL Server only.
    As far as I know there's no 64-bit version OLE DB Provider for Visual FoxPro, so you may take either workaround below.
    Working with 32 bit providers and 64 bit SQL Server
    use a 32-bit version SQL Server 2012(the last option you may choose)
    If it is 32-bit SQL Server you installed, please confirm  and provide your SQL Server version details and the version of the OS where your database is hosted so that we will look into the specific scenario.
    Eric Zhang
    TechNet Community Support

  • Plugins & sampltank not showing up for use?

    Hi there, I am still having trouble with plugins, can anyone help?
    Firstly, after installing and ensuring the AU ones are installed, my plugins do not show up for use in channels etc. they work perfectly in both Bias & ProTools though.
    i) I downloaded the waves demos for a 14 day trial and Logic doesn't find them, do I have to do something manually for them to be noticed?
    ii) Sampletank2 does not show up either (AU installed). I downloaded the free version and it DOES show up.
    Argh...
    G

    OK, last I checked the Waves passed Validation (I am not a Waves owner) so the demo version may be older-if you are considering purchasing them make sure you get all answers about AU Validation from Waves.
    Another thing: Logic Pro comes with a great suite of Plugins. You may want to consider that alternative if you were thinking of buying Waves.
    What do you mean it should have happened at startup? It should have validated or they should have passed validation?
    Cheers, J

  • Tips for using Galil Tools with Labview

    This post is not a question, but below is a link to Galil's site that provides various methods and tips for using Galil's software for communicating with their controllers using LabVIEW. Hopefully it will assist others in the future.
    http://www.galilmc.com/techtalk/software/using-labview-with-the-galiltools-communication-library/
    Enjoy!
    -AK2DM
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

    Thank you very much!
    This is the information I was looking for.

  • Unable to install Oracle Provider for OLEDB 8.1.6

    I was trying to install Oracle Provider for OLEDB 8.1.6 but was not able to do so because the java run-time environment could not be found. I have tried to install it on different computers, it worked on some and not on others. The computers I have tried all had windows 2000 or NT 4.0. I greatly appreciate if you could help.

    Found the post below on another thread. This would not work for us without changing the JRE_MEMORY_OPTIONS as well.
    ========================================================
    One of our DBAs had the answer. Its a bug relating to p4 processors.
    1. Rename the file symcjit.dll to symcjit.old
    2. Change the following line in the "oraparam.ini" file to read:
    JRE_MEMORY_OPTIONS=-nojit -ms16m -mx32m
    They said someone found it in Oracle KB article 131299.1 but I have still been unable to find the Oracle KB. Perhaps a "Knowledge Base" link should be added to the support or resources section.

  • How to install Oracle Provider for OLEDB for  10g

    Hi,
    I am having intantclient installed on my system. I want to install OLEDB for oracle 10g on my system. But there is some problem in installation. Its searching for ORACLE universal installer. But i have oracle instant client only installed on my system. So can you guide me how to install OLEDB for ORACLE? I have downloaded ODAC101040.exe from the ORACLE site.
    Thanks
    Ashwini

    Post your query at 'Oracle Provider for OLE DB' forum, you would probably find more answers there:
    Oracle Provider for OLE DB

  • Cant connect to Ora8.1.6 db using OLEDB provider for Ora8.1.7 cant find 8.1.6 OLEDB

    Hello,
    I need to connect to an Oracle 8.1.6 Database using OLEDB. Currently, we have one workstation with an ODBC connection and has an OLEDB Provider for Oracle 8.1.6. I can connect to Oracle using OLEDB on this machine (Winnt4 SP4) and see data from the tables. But I need to connect to the same Oracle DB from another workstation (Winnt4 SP6).
    I dowloaded the OLEDB Provider for Oracle8i from the Oracle Website, and on install I observed that this one was for Oracle 8.1.7. I keep getting an error message that it can't resovle the Service Name. I have played with the Net8 Configuration assistant for Oracle8i and the other selection for Oracle8.0 or 7.0. But I keep getting the same error on the NT SP6 machine. I have looked at the tnsnames.ora file on the SP6 machine and the SP4 machine. They are different, and I tried to make the .ora file on the SP6 machine match the .ora file on the SP4 machine but still can't resolve the Service Name. I would be very grateful if someone could help me out - either finding an earlier OLEDB Provider or some configuration trick.
    Many thanks,
    Rich Protzel

    Did you ever get this issue resolved? Do you know where I can get the Oracle Provider for OLE DB for 8.1.6?
    Aaron

Maybe you are looking for