Quantcast
Channel: Answers for "How to create oracle view from sql server"
Browsing latest articles
Browse All 4 View Live

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 Article


Answer 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

Browsing latest articles
Browse All 4 View Live