Connecting Oracle to SQL Server via database link

前端 未结 2 479
孤城傲影
孤城傲影 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: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';
    

提交回复
热议问题