| ||||
SQL Server Tools General
| ||||
when u export view from one database to another the view is created as table in the target database. To migrate view , create script of the view and run that script in Target DB... ... do not select view in Export wizards only select tables...
if you are getting View1 already exists then :-
Check in Tables there will be a table called View1 , first drop that and run the script for view1 to create...
Madhu
Well, thanks!
As u said, the views were created as tables in the target DB. So i droped them and made a new script for the views.
Myra