If you don't want to restore the database and only want schema and data of the database. You can do like scipt of all objects of the database and then bcp out the data to flat file or you can do import/export wizard to export the data into flat file.
then you can copy to the server you wanted by whatever method you can.
On the destination server just create the objects by the scripts you generated and import the data by bulk insert,bcp in or import wizard.
Main Topics
Browse All Topics





by: wiljePosted on 2009-09-25 at 15:30:11ID: 25427800
You can backup the database, copy the backup file to disk, transport to new system and perform a database restore.
You could also perform a detach/attach to move the data & log files - but the backup/restore option is much cleaner and easier.