<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2005 &#8211; Generate Script with Data from Database &#8211; Database Publishing Wizard</title>
	<atom:link href="http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Mon, 13 Feb 2012 15:11:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Pradhan</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-246663</link>
		<dc:creator><![CDATA[Pradhan]]></dc:creator>
		<pubDate>Wed, 01 Feb 2012 15:51:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-246663</guid>
		<description><![CDATA[When I tried creating a schema for one of my databases, I got the below in the command prompt. Can anyone tell me why, Is there any limitation in the database size or number of objects while generating a schema script this way?

SqlPubWiz Command Line: Error: Operation is not valid du e to the current state of the object


Thanks,
Pradhan]]></description>
		<content:encoded><![CDATA[<p>When I tried creating a schema for one of my databases, I got the below in the command prompt. Can anyone tell me why, Is there any limitation in the database size or number of objects while generating a schema script this way?</p>
<p>SqlPubWiz Command Line: Error: Operation is not valid du e to the current state of the object</p>
<p>Thanks,<br />
Pradhan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blahblah1233445</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-235883</link>
		<dc:creator><![CDATA[blahblah1233445]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 07:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-235883</guid>
		<description><![CDATA[create procedure cyclic_order(@n int)
as
declare @i int
declare @count int
set @count = 0
BEGIN
while (@count &lt; @n)
begin
set @i = 0
while (@i &lt; 10)
begin
print @i
set @i = @i + 1
end
set @count = @count + 1
end
END]]></description>
		<content:encoded><![CDATA[<p>create procedure cyclic_order(@n int)<br />
as<br />
declare @i int<br />
declare @count int<br />
set @count = 0<br />
BEGIN<br />
while (@count &lt; @n)<br />
begin<br />
set @i = 0<br />
while (@i &lt; 10)<br />
begin<br />
print @i<br />
set @i = @i + 1<br />
end<br />
set @count = @count + 1<br />
end<br />
END</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kehao</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-218111</link>
		<dc:creator><![CDATA[Kehao]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 02:52:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-218111</guid>
		<description><![CDATA[hey,

on the top of the script type 

USE [your database name]

That will import the files over...]]></description>
		<content:encoded><![CDATA[<p>hey,</p>
<p>on the top of the script type </p>
<p>USE [your database name]</p>
<p>That will import the files over&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-190462</link>
		<dc:creator><![CDATA[Bill]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 00:45:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-190462</guid>
		<description><![CDATA[Bill

Having the same issue reported by Jim on 9/23/11.  The only solution that comes to mind is to script out the tables, views etc seperately and then run the script for views after the tables script etc.]]></description>
		<content:encoded><![CDATA[<p>Bill</p>
<p>Having the same issue reported by Jim on 9/23/11.  The only solution that comes to mind is to script out the tables, views etc seperately and then run the script for views after the tables script etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jim</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-170961</link>
		<dc:creator><![CDATA[jim]]></dc:creator>
		<pubDate>Fri, 23 Sep 2011 16:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-170961</guid>
		<description><![CDATA[I&#039;m having a problem with the SqlPubWiz scripting the create views before the create tables which those views reference. Obviously this doesn&#039;t work since those tables are not found until later. I&#039;ve seen other people have problems with this but have yet to find a solution other than manually rearranging the output file.

Does anybody have a solution to this problem? Does anybody know WHY on earth it would create the views before the tables?  I can see NO reason to create the views first and every reason to create them last.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m having a problem with the SqlPubWiz scripting the create views before the create tables which those views reference. Obviously this doesn&#8217;t work since those tables are not found until later. I&#8217;ve seen other people have problems with this but have yet to find a solution other than manually rearranging the output file.</p>
<p>Does anybody have a solution to this problem? Does anybody know WHY on earth it would create the views before the tables?  I can see NO reason to create the views first and every reason to create them last.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: martin</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-144439</link>
		<dc:creator><![CDATA[martin]]></dc:creator>
		<pubDate>Tue, 28 Jun 2011 14:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-144439</guid>
		<description><![CDATA[I want to deploy the Database changes around in 100 production databases. It is not possible to compare and deploy. Because all databases are not upto date as per the program. So I want deploy the stored procedures and views in the following way.

if the view/sp exists - Alter the that otherwise create that. I searched for a tool which generate alter &amp; create based on if exist condition. I could not find one. please help me if anybody come to know about such tool.]]></description>
		<content:encoded><![CDATA[<p>I want to deploy the Database changes around in 100 production databases. It is not possible to compare and deploy. Because all databases are not upto date as per the program. So I want deploy the stored procedures and views in the following way.</p>
<p>if the view/sp exists &#8211; Alter the that otherwise create that. I searched for a tool which generate alter &amp; create based on if exist condition. I could not find one. please help me if anybody come to know about such tool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kumaresh Chandra Baruri</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-128424</link>
		<dc:creator><![CDATA[Kumaresh Chandra Baruri]]></dc:creator>
		<pubDate>Tue, 12 Apr 2011 06:21:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-128424</guid>
		<description><![CDATA[Nice tool. It saves lot of time for me. I wanted to prepare a tool . Then I searched by googling and found. 

Thanks]]></description>
		<content:encoded><![CDATA[<p>Nice tool. It saves lot of time for me. I wanted to prepare a tool . Then I searched by googling and found. </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-112444</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Fri, 21 Jan 2011 10:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-112444</guid>
		<description><![CDATA[If you use version 2008, there is an option. Otherwise you need to use import/export wizard to export data]]></description>
		<content:encoded><![CDATA[<p>If you use version 2008, there is an option. Otherwise you need to use import/export wizard to export data</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kira K</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-112028</link>
		<dc:creator><![CDATA[Kira K]]></dc:creator>
		<pubDate>Wed, 19 Jan 2011 09:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-112028</guid>
		<description><![CDATA[How to generate script of of a database  with data in tables]]></description>
		<content:encoded><![CDATA[<p>How to generate script of of a database  with data in tables</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: k sankara raman</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-108452</link>
		<dc:creator><![CDATA[k sankara raman]]></dc:creator>
		<pubDate>Wed, 29 Dec 2010 04:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-108452</guid>
		<description><![CDATA[Hi Pinal,

Thanks for the detail.  Can you throw some light on how to script index columns and re-create for all tables in a database.

Thanks again in advance

Regards
K. Sankara Raman
[removed phone number]]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Thanks for the detail.  Can you throw some light on how to script index columns and re-create for all tables in a database.</p>
<p>Thanks again in advance</p>
<p>Regards<br />
K. Sankara Raman<br />
[removed phone number]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harie</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-108370</link>
		<dc:creator><![CDATA[Harie]]></dc:creator>
		<pubDate>Tue, 28 Dec 2010 18:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-108370</guid>
		<description><![CDATA[I installed and using graphical tool and command line while executing I am getting this error. I hope u can help me.Thanks in advance.

Error: Could not load file or assembly &#039;Microsoft.SqlServer.BatchParser, Version
=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91&#039; or one of its depe
ndencies. The system cannot find the file specified.]]></description>
		<content:encoded><![CDATA[<p>I installed and using graphical tool and command line while executing I am getting this error. I hope u can help me.Thanks in advance.</p>
<p>Error: Could not load file or assembly &#8216;Microsoft.SqlServer.BatchParser, Version<br />
=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91&#8242; or one of its depe<br />
ndencies. The system cannot find the file specified.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-101871</link>
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Wed, 24 Nov 2010 13:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-101871</guid>
		<description><![CDATA[Hi Pinal,

Can you an example script for 2005 on a remote server?

Thank you,

Mark]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Can you an example script for 2005 on a remote server?</p>
<p>Thank you,</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khurram saddique</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-89688</link>
		<dc:creator><![CDATA[khurram saddique]]></dc:creator>
		<pubDate>Mon, 27 Sep 2010 07:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-89688</guid>
		<description><![CDATA[hi 
i have problem generating script
well i have a database in sql server 2000 and want to use in sql server 2005 or sql server 2008 
in mssql 2000  one of the  table, im using nchar 
now when i use sql publishing wizard  error occurs
do i have to change nchar 
and if i had to what will be the datatype]]></description>
		<content:encoded><![CDATA[<p>hi<br />
i have problem generating script<br />
well i have a database in sql server 2000 and want to use in sql server 2005 or sql server 2008<br />
in mssql 2000  one of the  table, im using nchar<br />
now when i use sql publishing wizard  error occurs<br />
do i have to change nchar<br />
and if i had to what will be the datatype</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sid</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-87822</link>
		<dc:creator><![CDATA[Sid]]></dc:creator>
		<pubDate>Tue, 14 Sep 2010 13:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-87822</guid>
		<description><![CDATA[Thanx. This really helped :)]]></description>
		<content:encoded><![CDATA[<p>Thanx. This really helped :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varun</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-65130</link>
		<dc:creator><![CDATA[Varun]]></dc:creator>
		<pubDate>Tue, 13 Apr 2010 20:12:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-65130</guid>
		<description><![CDATA[Nice one.

How can I get Schema and Data(Only for Selected Tables) using Publishing Wizard.

My task is to script of whole Database where I can, but also need data from selected tables(Not needed from all).

Is it a way I can do it.]]></description>
		<content:encoded><![CDATA[<p>Nice one.</p>
<p>How can I get Schema and Data(Only for Selected Tables) using Publishing Wizard.</p>
<p>My task is to script of whole Database where I can, but also need data from selected tables(Not needed from all).</p>
<p>Is it a way I can do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yoshi</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-63623</link>
		<dc:creator><![CDATA[Yoshi]]></dc:creator>
		<pubDate>Wed, 24 Mar 2010 10:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-63623</guid>
		<description><![CDATA[Hi Pinal,

Thank for the tool..i have an urgent questions
1. the tool creates the contents of the db without the db, i need the db first.

2. i dont need the data in the script.

please help..btw nice to meet you]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Thank for the tool..i have an urgent questions<br />
1. the tool creates the contents of the db without the db, i need the db first.</p>
<p>2. i dont need the data in the script.</p>
<p>please help..btw nice to meet you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaliass</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-62788</link>
		<dc:creator><![CDATA[kaliass]]></dc:creator>
		<pubDate>Fri, 12 Mar 2010 05:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-62788</guid>
		<description><![CDATA[i want restore the database by script with data....
bcoz i want change my db 2000 to 2005.]]></description>
		<content:encoded><![CDATA[<p>i want restore the database by script with data&#8230;.<br />
bcoz i want change my db 2000 to 2005.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hari Prasad M</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-61894</link>
		<dc:creator><![CDATA[Hari Prasad M]]></dc:creator>
		<pubDate>Sat, 27 Feb 2010 17:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-61894</guid>
		<description><![CDATA[I did not get the exact answer in the sql authority articles. My staight question is, can we generate the script with data of table in SQL server 2005. I read most of the articles in SQL athority but every article is describing about the SQL 2008. 

I tried to generate the script in 2005 but I am unable to see the script data in 2005. I am not sure whether this is available in 2005 or not? Could you please clarify my doubt.]]></description>
		<content:encoded><![CDATA[<p>I did not get the exact answer in the sql authority articles. My staight question is, can we generate the script with data of table in SQL server 2005. I read most of the articles in SQL athority but every article is describing about the SQL 2008. </p>
<p>I tried to generate the script in 2005 but I am unable to see the script data in 2005. I am not sure whether this is available in 2005 or not? Could you please clarify my doubt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-60791</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Sat, 06 Feb 2010 17:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-60791</guid>
		<description><![CDATA[Hello Judas,

Please check the article:
http://mssqlonline.blogspot.com/2009/07/sql-server-2008-copy-database-with-data.html

If you not want to include data in scrip the set the &quot;Script Data&quot; option to Flase.

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Judas,</p>
<p>Please check the article:<br />
<a href="http://mssqlonline.blogspot.com/2009/07/sql-server-2008-copy-database-with-data.html" rel="nofollow">http://mssqlonline.blogspot.com/2009/07/sql-server-2008-copy-database-with-data.html</a></p>
<p>If you not want to include data in scrip the set the &#8220;Script Data&#8221; option to Flase.</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Judas Gutenberg</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-60745</link>
		<dc:creator><![CDATA[Judas Gutenberg]]></dc:creator>
		<pubDate>Fri, 05 Feb 2010 22:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-60745</guid>
		<description><![CDATA[Why does everything have to be so difficult in SQL Server?  I want to move a large DB from one server to another.  In MySQL, I script it out, download the script, upload the script to the new place, and then type in ten or twenty characters to install it EXACTLY as it was.  In SQL Server, on the other hand, all the wizards destroy the constraints and relations and there is no easy way to script the new database in (in most cases hosts prevent you from installing a .BAK file).  I&#039;ve said it before and I&#039;ll say it again:  migrating MySQL DBs is like shipping a boat full of containers from china to los angeles.  Migrating a MS SQL database is like dealing with refugees fleeing a war zone.  Can someone please write a script that automates the hell i am now going through?  Parts of that script exists, but there is still no end-to-end solution that works with large databases! Come on, people, it&#039;s 2010.  I guess that&#039;s why all the DB work that matters is happening on MySQL!]]></description>
		<content:encoded><![CDATA[<p>Why does everything have to be so difficult in SQL Server?  I want to move a large DB from one server to another.  In MySQL, I script it out, download the script, upload the script to the new place, and then type in ten or twenty characters to install it EXACTLY as it was.  In SQL Server, on the other hand, all the wizards destroy the constraints and relations and there is no easy way to script the new database in (in most cases hosts prevent you from installing a .BAK file).  I&#8217;ve said it before and I&#8217;ll say it again:  migrating MySQL DBs is like shipping a boat full of containers from china to los angeles.  Migrating a MS SQL database is like dealing with refugees fleeing a war zone.  Can someone please write a script that automates the hell i am now going through?  Parts of that script exists, but there is still no end-to-end solution that works with large databases! Come on, people, it&#8217;s 2010.  I guess that&#8217;s why all the DB work that matters is happening on MySQL!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Several Readers Questions and Readers Answers Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-60406</link>
		<dc:creator><![CDATA[SQL SERVER – Several Readers Questions and Readers Answers Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sat, 30 Jan 2010 01:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-60406</guid>
		<description><![CDATA[[...] A. In SQL Server 2008 : Right click Database &gt; Tasks &gt; Generate Scripts &gt; In the wizard on Choose Script Option page, set Script Data option to True and complete the wizard.For SQL 2005 or earlier versions, use Database Publishing Wizard. For more details about Database Publishing wizard, please visit the blog http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-data... [...]]]></description>
		<content:encoded><![CDATA[<p>[...] A. In SQL Server 2008 : Right click Database &gt; Tasks &gt; Generate Scripts &gt; In the wizard on Choose Script Option page, set Script Data option to True and complete the wizard.For SQL 2005 or earlier versions, use Database Publishing Wizard. For more details about Database Publishing wizard, please visit the blog <a href="http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-data.." rel="nofollow">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-data..</a>. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashwin Ala</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-58459</link>
		<dc:creator><![CDATA[Ashwin Ala]]></dc:creator>
		<pubDate>Sat, 12 Dec 2009 11:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-58459</guid>
		<description><![CDATA[Thanks for step by step solution]]></description>
		<content:encoded><![CDATA[<p>Thanks for step by step solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhanajeyan</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-58366</link>
		<dc:creator><![CDATA[Dhanajeyan]]></dc:creator>
		<pubDate>Wed, 09 Dec 2009 12:53:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-58366</guid>
		<description><![CDATA[Hi all,
         Could anyone suggest me a stored procedure to generate a script for crud operation]]></description>
		<content:encoded><![CDATA[<p>Hi all,<br />
         Could anyone suggest me a stored procedure to generate a script for crud operation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fazil</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-58155</link>
		<dc:creator><![CDATA[Fazil]]></dc:creator>
		<pubDate>Thu, 03 Dec 2009 17:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-58155</guid>
		<description><![CDATA[Hi,

I appriciate if anyone can provide me the procedure or the way of Automated process for generating sql script which we generaly use by right clicking on DB then all task then go for generating sql script,

I want the Automated process for  SQL2005.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I appriciate if anyone can provide me the procedure or the way of Automated process for generating sql script which we generaly use by right clicking on DB then all task then go for generating sql script,</p>
<p>I want the Automated process for  SQL2005.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcus Nyberg</title>
		<link>http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-57817</link>
		<dc:creator><![CDATA[Marcus Nyberg]]></dc:creator>
		<pubDate>Mon, 23 Nov 2009 09:55:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/#comment-57817</guid>
		<description><![CDATA[Thank you, this helped a lot when I used it to backup a database from a machine that I had no permissions to do a backup &quot;the regular ways&quot;.]]></description>
		<content:encoded><![CDATA[<p>Thank you, this helped a lot when I used it to backup a database from a machine that I had no permissions to do a backup &#8220;the regular ways&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

