January 6, 2011 at 2:34 pm
What are the steps to connect from SQL Server 2008 to Oracle DB and once connected can you query the same as in SQL Server. Please let me know if I need to load any Oracle client software or anything else.
Thanks
January 6, 2011 at 2:57 pm
Maybe this link will help you getting started.
January 6, 2011 at 9:52 pm
So the following script is what I have so far to attempt accessing the data:
EXEC sp_addlinkedserver 'OracleSvr',
'Oracle 7.3',
'MSDAORA',
'ORCLDB'
GO
SELECT *
FROM OPENQUERY(OracleSvr, 'SELECT name, id FROM joe.titles')
GO
(The above code taken from here --> http://msdn.microsoft.com/en-us/library/ms188427.aspx)
Where 'ORCLDB' this is suppose to be the alias pointing to the SQL source how do I set up this alias? Can I use SQL Server to do this or do I need to install some configuration tool for this?
January 7, 2011 at 12:08 am
Did you actually follow any of the links I pointed you at? Most of them include a line like "Install Oracle client"...
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply