Okay, revisiting this one.
Anyone care to help me walk through this? What I need to do is execute a sp daily at a specified time that will update a table in SS2K with data from a simple join query on a table in an Oracle db. I have absolutely no idea how to create the link to the Oracle db and subsequestly query the data.
I suppose because sp_addlinkedserver is on the master table I will have to get the sa to run it; however, I would like to prepare it for her.
Here's what they have in BOL, but I'm not sure of the parameters.
USE master
GO
EXEC sp_addlinkedserver
@server = 'LONDON Mktg', <--- don't know what this is. A new instance of what?
@srvproduct = 'Oracle',
@provider = 'MSDAORA',
@datasrc = 'MyServer' <---I take it this is the name of the oracle server.
GO
Once this is done, how do I query against this linked data?
Thanks.