Click here to Skip to main content
15,886,617 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hello my dear frndz !

wishing you a happy new year 2013 to all of you.

presently am using Sqlserver 2005 database. i need help from you guys.

i have a database(oldCollegeDB) with 55 tables in it. Now i want to dump these 55 tables to new database (NewCollegeDB)

Please can you help me guys, how to write a query for this.

thanks for ever !!.
Posted

1. take backup of oldCollegeDB database name file for,e.g. oldCollegeDB.bak

2.
create new database name it NewCollegeDB

3.
now, restore oldCollegeDB.bak file in NewCollegeDB

Happy Coding!
:)
 
Share this answer
 
Make use of the Copy Database Wizard[^].
 
Share this answer
 
Have you tried generating db table's the scripts? You can generate a script to create the tables then generate a script to insert the data.

SP_ Genereate_Inserts[^] for generating the data insert script.

--OR--

You can use Microsoft SQL Server Database Publishing Wizard[^]

Good luck,
OI
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900