importing a view in Sql Server 2008
-
2009년 1월 29일 목요일 오후 12:12
Hello All,
I want to import a view which is reated in Oracle.
But i want to import this in Sql server 2008 so that it could not change my actual database
If i made some changes in that.So how could i import a view in sql server built in Oracle
모든 응답
-
2009년 1월 29일 목요일 오후 6:13중재자
Well, that depends on what you understand by "Import". You will have to create your own view definition based on TSQL for that. You can sure reference the tables in the Oracle database, but you will have to port it to TSQL.
Jens K. Suessmeyer
-
2009년 2월 20일 금요일 오전 10:52Hi
if you just want to reference this view in your database, you can try :
CREATE SYNONYM [schema].[synonymName] FOR [serverName].[Database].[schema].[Objectname]
then you can access [schema].[synonymName] in your database. -
2011년 6월 6일 월요일 오전 6:29
There are many ways of doing so:
you can create a DTS or SSIS package to do so.
Secondly, use SQL Server Migration Assistant for Oracle (SSMA for Oracle), which will do this automatically.
Thanks..
-Nitin Pawar -
2012년 4월 22일 일요일 오후 9:02cau you provide specific for import view schema to SSIS extract.
-
2012년 4월 22일 일요일 오후 9:03HI CAN YOU PROVIDE SPECIFIC FOR SSIS PACKAGE

