Reputation: 121
I have an ssis project in visual studio 2012 in my machine. I want to setup a connection manager to an oracle database that's in a remote server.
I've tried installing oracle and tried several types of connections managers. But I wasn't able to successfully test the connection in any of them.
What type of connection manager should I use and what software do I need to install in my machine?
Upvotes: 0
Views: 1738
Reputation: 51
(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=oracle_server_ip_address)(PORT=1521))(CONNECT_DATA=(SID=oracle_sid)))
Upvotes: 2
Reputation: 121
ServerName=
(DESCRIPTION=
(ADDRESS=
(PROTOCOL=TCP)
(HOST=)
(PORT= )
)
(CONNECT_DATA=
(SERVICE_NAME= )
)
)
Now you should have a connection.
Upvotes: 1
Reputation: 526
There are several ways to set up a connection to Oracle from SQL Server. The easiest approach is to set up a linked server object. Try the following links that show clear steps for creating the connection.
Hope one of these help.
Upvotes: 0