Alternative to MSSQL sp_addlinkedserver
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?