↧
Answer by Raj More
You will have to create a Linked Server to Oracle. Then you can use `OpenQuery` http://msdn.microsoft.com/en-us/library/aa276848(v=sql.80).aspx
View ArticleAnswer by Usman Butt
Making a VIEW is not that difficult i.e. CREATE VIEW EMP (EMPNO, ENAME, SAL, HIREDATE) AS SELECT "empno", "ename", "sal", "hiredate" FROM "dbo"."emp"@MSQL; where "dbo"."emp" is the name of the table...
View Article