Connecting Oracle to SQL Server via database link

前端 未结 2 465
孤城傲影
孤城傲影 2020-12-10 15:11

I am trying to connect from Oracle 10G(on UNIX) to a SQL Server database (On windows). I have looked at the manual and i will admit that i am finding the documentation quite

相关标签:
2条回答
  • 2020-12-10 15:27

    I used Data Direct drivers which had to be configured on the Oracle UNIX machine. You must create the ODBC connection in UNIX in order to be able to see SQL Server. (At least that has always been how I have done it)

    0 讨论(0)
  • 2020-12-10 15:32

    In order to create a database link to SQL Server, you have to enclose your connect name and password between double quotes, like below:

    create database link mysqlink 
    connect to "myuser" identified by "mypassword" using 'servername';
    
    0 讨论(0)
提交回复
热议问题