Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Alternative to MSSQL sp_addlinkedserver

Edgar DoironFeb 8 2012 — edited Feb 9 2012
I'm converting an MSSQL database to oracle
and I hit a part that has this command

EXEC master.dbo.sp_addlinkedserver @server = N'XXXXX', @srvproduct=N'Index Server', @provider=N'MSIDXS', @datasrc=N'XXXXX', @catalog=N'XXXXX'

What this does is it let's SQL query the windows index catalog, so you can query words or anything, and find documents containing those words.

Is there an alternative for it with oracle?

If not, I guess I could use a java class to do it?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 8 2012
Added on Feb 8 2012
3 comments
444 views