I need to retrieve Table Names from Linked Oracle Database which is on Linked Server with Microsoft SQL Server.
e.g. I can get table names in SQL Server using:
SELECT TABLE_NAME, COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME LIKE '%TELEPHONE%'
but, I need Oracle Code. I am using Microsoft SQL Server with a linked server to Oracle.