Click here to Skip to main content
6,822,123 members and growing! (18,000 online)
Email Password   helpLost your password?
Database » Database » General     Intermediate License: The Code Project Open License (CPOL)

SQL SERVER - 2005 - Generate Script with Data from Database - Database Publishing Wizard

By pinaldave

SQL SERVER - 2005 - Generate Script with Data from Database - Database Publishing Wizard
C++, SQL, Windows, Visual-Studio, SQL2005, DBA, Dev
Revision:2 (See All)
Posted:17 Nov 2007
Views:23,966
Bookmarked:28 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
10 votes for this article.
Popularity: 4.42 Rating: 4.42 out of 5
1 vote, 10.0%
1

2
1 vote, 10.0%
3
1 vote, 10.0%
4
7 votes, 70.0%
5

Introduction

I really enjoyed writing about SQL SERVER - 2005 - Create Script to Copy Database Schema and All The Objects - Stored Procedure, Functions, Triggers, Tables, Views, Constraints and All Other Database Objects. Since then, I have received questions about how to copy data as well along with schema. The answer to this is Database Publishing Wizard. This wizard is very flexible and works with modes like schema only, data only or both. It generates a single SQL script file which can be used to recreate the contents of a database by manually executing the script on a target server.

The pre-requisite for Database Publishing Wizard is .NET 2.0 Framework, SQL Server 2005 Management Objects, SMO. The Database Publishing Wizard will script all objects that the supplied User has permissions to see in the source database. Any objects created "WITH ENCRYPTION" cannot be scripted. If such objects exist in the source database, the tool will not produce a script.

First of all, install Database Publishing Wizard: Download Database Publishing Wizard.

It will be installed at the following location: C:\Program Files\Microsoft SQL Server\90\Tools\Publishing\.

Now login using Command prompt and run the following command on any desired database. It will create the script at your specified location. The script will have schema as well as data which can be used to create the same information on the new server.

Command to run which will create schema and database:

C:\Program Files\Microsoft SQL Server\90\Tools\Publishing\sqlpubwiz 
script -d AdventureWorks "C:\AdventureWorks.sql" 

Command to run which will create schema:

C:\Program Files\Microsoft SQL Server\90\Tools\Publishing\sqlpubwiz 
script -d AdventureWorks "C:\AdventureWorks.sql" -schemaonly 

Command to run which will create data:

C:\Program Files\Microsoft SQL Server\90\Tools\Publishing\sqlpubwiz 
script -d AdventureWorks "C:\AdventureWorks.sql" -dataonly 

Command Windows will generate output of action it is taking. See the below two screen shots:

If you have followed this tutorial exactly, you will end up with adventurework.sql which will be quite big and if your computer is not powerful enough, it will hang your computer for a while. I suggest that you try this on a smaller database of a size of around 100MB.

Reference: Pinal Dave (http://www.SQLAuthority.com), Database Publishing Wizard

History

  • 17th November, 2007: Initial post

License

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

About the Author

pinaldave


Member
Pinalkumar Dave is a Microsoft SQL Server MVP and a prominent expert on SQL servers. He has written over 1100 articles on the subject on his blog at http://blog.sqlauthority.com. He is a dynamic and proficient Principal Database Architect, Corporate Trainer and Project Manager, who specializes in SQL Server Programming and has 7 years of hands-on experience. He holds a Masters of Science degree and a number of certifications, including MCDBA and MCAD (.NET). He was awarded Regional Mentor for PASS Asia and is also Mentor for Solid Quality India.
Occupation: Founder
Company: http://blog.SQLAuthority.com
Location: India India

Other popular Database articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 1 of 1 (Total in Forum: 1) (Refresh)FirstPrevNext
GeneralGood Article Pinmembercdbh7:00 19 Nov '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

PermaLink | Privacy | Terms of Use
Last Updated: 17 Nov 2007
Editor: Deeksha Shenoy
Copyright 2007 by pinaldave
Everything else Copyright © CodeProject, 1999-2010
Web21 | Advertise on the Code Project