How to query an Oracle table from SQL Server 2000?

An employee would like to query a table in an Oracle database using SQL Server 2000, Enterprise Manager.

He knows how to do the whole DTS thing, but doesn’t want to go this route to add hoc requests.

Is there another way?

+3
source share
2 answers

Here's a step-by-step guide: Configuring a Linked Oracle Server

Note that the default Microsoft driver for Oracle RDBMS does not work, so you need to install the Oracle client (or instant client)

Another Microsoft Link: MSDN

+1
source

Linked Server ( Security in Enterprise Manager). :

SELECT * FROM OracleServer.Database.dbo.Table

- Oracle , , "dbo" , SQL Server.

0

Source: https://habr.com/ru/post/1698478/


All Articles