Linked Server that connects to Oracle

Sometimes you need to pull data from an Oracle database into your SQL Server database.  No magic is required, you just need to use a Linked Server.  This article will show you how easy it is.

I am going to make the following assumptions 1.) that you already installed the Oracle Client http://www.oracle.com , it is pretty much a next, next, done installation.  2.) That you know the database name and service name you want to connect to,  3.) You have a username/password for the Oracle database.  All of this is required so you can create a Linked Server.

 

Below is a screenshot of the VoterData table in our Oracle Database.  We want to create a Linked Server so we can query the data directly from SSMS instead of exporting it out.

l2

 

 

Once the Oracle Client is installed (download from Oracle’s site), we need to open Net Manger, see below for the icon.  We are going to configure the Oracle network settings to connect to a database.

l1

 

This brings up the Oracle Net Manager program.

l3

 

Click the + sign on the Service Naming list, and then click the Green + sign on the left to create a new connection.

l4

This starts the connection wizard.  For the Net Service Name, you can name it whatever you want.  I am going to call mine Test, but you can call it anything.

l5

 

The next screen is the protocol that will be used, we are going to choose TCP/IP.

l6

 

You need to know the hostname or IP address of the location of the Oracle database you wish to connect to.  Mine is wincomputer.  You will also need to know the Port Number.  1521 is the default, but some companies use 1523 or some other port.  You will need to know what yours is.

l7

Now you need to provide the service name.  The Oracle DBA can provide this to you or you may already know it.

l8

 

Click Finish when you are done to complete the wizard.

l9

 

When you are done, the screen should look like this, with an entry named TEST user the service naming tree.l10

 

Now we are going to confirm that the Oracle connection works.  Goto a command prompt and type in:  tnsping test

Tnsping is an Oracle supplied utility that checks to see if you can connect to the listener.

You can read more about it here:  http://www.orafaq.com/wiki/Tnsping

l11

 

Below shows that we have successfully setup our connection and should be able to connect to our database using an alias of TEST.l12

 

Now in SQL Server Management Studio, drill down on Server Objects and Linked Servers and then Providers.  Then double click OraOLEDBOracle.

l13

 

We need to enable Allow Inprocess.  You can read more about these options here:  https://technet.microsoft.com/en-us/library/ms188095(v=sql.105).aspx

l14

 

Now right click on Linked Servers and choose New Linked Server.

l15

 

Here is how I filled in the first screen.  Linked server can be anything you want, I put TEST.  The provider has been changed to Oracle Provider for OLE DB.  Product name can be anything, but I put Oracle.   Data source is the name that we created in the Oracle Net Manager tool above…Test.  Finally provider string is the configuration file that gets created using the Net Manger tool.  This is the network/admin directory in your Oracle home, and the filename is tnsnames.ora.

l17

 

Here is a screen shot of the location of the Tnsnames.ora file location that you need to provide above.

l16

 

Now we need to goto the Security tab and select: Be Made using the security context.  Then we need to provide the username and password that the link will connect as.  This is an Oracle account.

l19

 

When done, right click the TEST Linked Server that we created and Test Connection.

l20

 

If everything is setup correctly, you should see the box below.

l21

Now in SSMS, drill down on the TEST Linked Server, and you can view the tables you have access to.  I do not know why the table names are showing up twice below.  When I tested it, it showed up correctly with one name.

l22

 

In SSMS, I run the following query, and I am pulling the information from Oracle!!!

The syntax for the FROM section is as follows:

test..TEST.VOTERDATA

test is the Linked Server name that we created.

.  is the database name, but we can leave this blank, hence the ..

TEST.VOTERDATA is the schema name and table name.  I have found these need to be uppercase or else you get an error message that says table does not exist.

 

l23

 

And there you have it.  You can now include Oracle data in your SQL Server queries.  Happy querying!

 

Advertisement

2 thoughts on “Linked Server that connects to Oracle”

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s