Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Transfer database from SQL Server 2012 to SQL Server 2008 [closed]

I already have a database in SQL Server 2012 Enterprise edition.

It contains :

  • tables
  • views
  • procedures
  • objects

Now I want to downgrade the database to SQL Server 2008 Enterprise edition. I know there is no direct option. I tried to backup on 2012 and then restore on 2008. Not working.

Any Idea on how to completely transfer database ?

like image 877
DKG Avatar asked Jan 29 '13 15:01

DKG


1 Answers

You must export the database as text (.sql) and the import it back. See Run the SQL Server Import and Export Wizard. There are also 3rd party tools, like SQL Compare and SQL Data Compare.

like image 65
Remus Rusanu Avatar answered Sep 21 '22 16:09

Remus Rusanu