﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Administering / SQL Server 2005  / Automate "Generate Scripts" in SQL Job / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Sat, 18 May 2013 08:58:08 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>Hi,this has been really useful, thanks :)you mentioned you have a script that does tables too - could you possibly post that?I'm newbie trying to build a script generator to update a list of 'config' tables in another database - so need to work through a list of tables (tbl_tablestoreplace) and create a script of them - including their fields, keys, indexes and data?cheersBrett</description><pubDate>Thu, 02 Dec 2010 16:01:44 GMT</pubDate><dc:creator>6bkt9</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>Why not create an SSIS package to create your objects in another DB?</description><pubDate>Mon, 29 Nov 2010 09:16:39 GMT</pubDate><dc:creator>Randy Doub</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>I use this to script all the objects to files. As I recall, the .exe is not in 2005, so I copied it, and maybe a couple others from my 2000 server: scptxfr.rll, scriptin.exe, sqlresld.dll. I build a temp table with the databases I want to script, then loop through each database name:[code="sql"]--- Script out Database objectsset @code = '"C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\scptxfr.exe" /s MyServerName ' + ' /d ' + @DatabaseName +  ' /I /F ' 	+ '\\UNCServerToWriteTo\SQLBACKUP\MyServerName\Object_Scripts\' + @DatabaseName + '_structure_'+ convert(varchar(8),getdate(),112) + '' + '  /q /A /r'--select @codeEXEC master..xp_cmdshell  @code[/code]Looks like it scripts pretty much all the database objects. I started using it as an extra layer of backup before we had change controls in place, and as a way to recover code without having to restore a 1Tb database.</description><pubDate>Mon, 29 Nov 2010 07:58:24 GMT</pubDate><dc:creator>homebrew01</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>I have attached the script.  It is extremely basic, but you can build on it very easily.  Actually, if you are familiar with Informix, they have a built-in tool called dbschema...that's where i got the name from.  I'm going to try to mimic the tool as much possible as it's been one of the best command line tools I have ever used for dumping schemas.  You can see the full usage here:  http://publib.boulder.ibm.com/infocenter/idshelp/v10/index.jsp?topic=/com.ibm.mig.doc/mig170.htm</description><pubDate>Mon, 29 Nov 2010 07:13:30 GMT</pubDate><dc:creator>bjhogan</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>[quote][b]Jeff Moden (11/26/2010)[/b][hr][quote][b]bjhogan (11/26/2010)[/b][hr]Have you tried doing this through Powershell?  You can easily access the the SQL Server SMO to script out the objects to a file.  I hadn't used powershell at all until this past Monday and within a few hours had a script that would dump the schema to a file.  It's really really easy.  And the code to do this is much more compact than using stored procedures.[/quote]Can you post the script, please?[/quote]Yes, this would be very useful. Perhaps even worthy of an article here on SSC!</description><pubDate>Sun, 28 Nov 2010 20:15:39 GMT</pubDate><dc:creator>WayneS</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>In general knowing that most vendors don't like client messing with their DBs, I've used a different approach to this problem. I would rather add my own database to the environment and have my code in this database, just referencing the other database. This way you don't run the risk of breaking support contracts, or of lossing your code.Leo</description><pubDate>Sun, 28 Nov 2010 13:45:40 GMT</pubDate><dc:creator>Leo.Miller</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>[quote][b]bjhogan (11/26/2010)[/b][hr]Have you tried doing this through Powershell?  You can easily access the the SQL Server SMO to script out the objects to a file.  I hadn't used powershell at all until this past Monday and within a few hours had a script that would dump the schema to a file.  It's really really easy.  And the code to do this is much more compact than using stored procedures.[/quote]Can you post the script, please?</description><pubDate>Fri, 26 Nov 2010 12:54:54 GMT</pubDate><dc:creator>Jeff Moden</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>Have you tried doing this through Powershell?  You can easily access the the SQL Server SMO to script out the objects to a file.  I hadn't used powershell at all until this past Monday and within a few hours had a script that would dump the schema to a file.  It's really really easy.  And the code to do this is much more compact than using stored procedures.</description><pubDate>Fri, 26 Nov 2010 10:12:45 GMT</pubDate><dc:creator>bjhogan</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>Hi Lowell...thanks for your reply.  I had to do some research on the BCP part but got it to work.  Thanks!One thing...it does output the specs,  but it's not exactly the same as running it manually.  It looks like it puts everything together without an sp_executesql statement.  For example:This is the code generated from one particular function that is generated out of the Generate Scripts Function:[quote]/****** Object:  UserDefinedFunction [dbo].[KLLfn_Get_Week_Start_Date]    Script Date: 11/22/2010 16:26:28 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOIF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[KLLfn_Get_Week_Start_Date]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT'))BEGINexecute dbo.sp_executesql @statement = N'-- =============================================-- Author:		Tony Schmitt-- Create date: 03/15/2010-- Description:	Return the starting day of a given week.-- =============================================CREATE FUNCTION [dbo].[KLLfn_Get_Week_Start_Date](	-- Add the parameters for the function here	@ParmDate DateTime)RETURNS DateTimeASBEGIN	-- Declare the return variable here	DECLARE @WkStartDate DateTime	-- Add the T-SQL statements to compute the return value hereSET @WkStartDate = (SELECT DATEADD(wk, DATEDIFF(wk, 6, @ParmDate), 6))	-- Return the result of the function	RETURN @WkStartDateEND' ENDGO[/quote]This is from the process you provided me with:[quote]-- =============================================-- Author:		Tony Schmitt-- Create date: 03/15/2010-- Description:	Return the starting day of a given week.-- =============================================CREATE FUNCTION [dbo].[KLLfn_Get_Week_Start_Date](	-- Add the parameters for the function here	@ParmDate DateTime)RETURNS DateTimeASBEGIN	-- Declare the return variable here	DECLARE @WkStartDate DateTime	-- Add the T-SQL statements to compute the return value hereSET @WkStartDate = (SELECT DATEADD(wk, DATEDIFF(wk, 6, @ParmDate), 6))	-- Return the result of the function	RETURN @WkStartDateEND[/quote]It then goes to the next Create Function statement.Basically, it looks like it's missing the step checking if it exists, then the execute statement.  When I try running the new version, I get loads and loads of errors about variables etc not being defined.Any ideas?</description><pubDate>Wed, 24 Nov 2010 12:04:32 GMT</pubDate><dc:creator>tschmitt300</dc:creator></item><item><title>RE: Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>well, here's a simple procedure that will return  a table with the definitions of just the view/proc/function objects that begin with "KLL" in the correct dependancy order.you could then create a scheduled job which calls bcp to output this to a single file.if you have TABLEs that begin with KLL, i have a different version for that, but it's basicalyl the same.[code]CREATE PROCEDURE sp_export_KLLschemaASBEGIN  SET NOCOUNT ON  CREATE TABLE #MyObjectHierarchy    (    HID int identity(1,1) not null primary key,    ObjectId int,    TYPE int,OBJECTTYPE AS CASE                              WHEN TYPE =  1 THEN 'FUNCTION'                              WHEN TYPE =  4 THEN 'VIEW'                              WHEN TYPE =  8 THEN 'TABLE'                              WHEN TYPE = 16 THEN 'PROCEDURE'                             WHEN TYPE =128 THEN 'RULE'                             ELSE ''                           END,   ONAME varchar(255),    OOWNER varchar(255),    SEQ int   )   --our results table  CREATE TABLE #Results(ResultsID int identity(1,1) not null,ResultsText varchar(max) )  --our list of objects in dependancy order  INSERT #MyObjectHierarchy (TYPE,ONAME,OOWNER,SEQ)    EXEC sp_msdependencies @intrans = 1  Update #MyObjectHierarchy SET ObjectId = object_id(OOWNER + '.' + ONAME)  --synonyns are object type 1 Function?!?!...gotta remove them  DELETE FROM #MyObjectHierarchy WHERE objectid in(    SELECT [object_id] FROM sys.synonyms UNION ALL    SELECT [object_id] FROM master.sys.synonyms)    --custom requirement: only objects starting with KLL  DELETE FROM #MyObjectHierarchy WHERE  LEFT(ONAME,3) &amp;lt;&amp;gt; 'KLL'   DECLARE    @schemaname     varchar(255),    @objname        varchar(255),    @objecttype     varchar(20),    @FullObjectName varchar(510)  DECLARE cur1 CURSOR FOR     SELECT OOWNER,ONAME,OBJECTTYPE FROM #MyObjectHierarchy ORDER BY HID  OPEN cur1  FETCH NEXT FROM cur1 INTO @schemaname,@objname,@objecttype  WHILE @@fetch_status &amp;lt;&amp;gt; -1	BEGIN       SET @FullObjectName = QUOTENAME(@schemaname) + '.' + QUOTENAME(@objname)              PRINT @FullObjectName       IF @objecttype IN( 'VIEW','FUNCTION','PROCEDURE')         BEGIN           INSERT INTO #Results(ResultsText)             EXEC sp_helptext @FullObjectName        --we need a batch seperator:        INSERT INTO #Results(ResultsText)        SELECT 'GO'          END	   FETCH NEXT FROM cur1 INTO @schemaname,@objname,@objecttype	 END    CLOSE cur1    DEALLOCATE cur1  SELECT ResultsText FROM #Results ORDER BY ResultsIDENDGO[/code]</description><pubDate>Wed, 24 Nov 2010 09:05:42 GMT</pubDate><dc:creator>Lowell</dc:creator></item><item><title>Automate "Generate Scripts" in SQL Job</title><link>http://www.sqlservercentral.com/Forums/Topic1025959-146-1.aspx</link><description>I would like to create a SQL job that automatically runs the Generate Scripts process for certain Views, Functions and Stored Procedures.A little background...we have a canned software package that uses an SQL 2005 database.  I have created several views, functions and stored procedures in that database to accommodate some of our needs, reporting, etc.  The problem is...whenever we apply an update from the software provider, all of my custom views etc get erased as part of their "upgrade" process.  I then run my script from the Generate Scripts process to re-create everything.As time has gone on, every time I make a change to something or add something new, I'm manually running the Generate Scripts option, then selecting the views, functions and stored procedures I want by hand.  Now that we're up in the mid 80s on quantity of custom objects I've made, this is a bit of a pain in the butt to do every time.  More of an annoyance than anything.What I would like to do is create an SQL Server job that runs this for me daily.  I know what objects I want to back up.  Running a simple [b]"SELECT * FROM dbo.sysobjects WHERE name LIKE 'KLL%' "[/b] shows me all of the objects I would want backed up, as all of my customizations I have prefixed with 'KLL'.  I can also see that the xtype field in that table tells me what are views, functions, and procedures.Is there some way I can create a script to run in a job that will run the Generate Scripts procedure, and output that result to a text file?Your help is much appreciated.Tony</description><pubDate>Wed, 24 Nov 2010 08:39:32 GMT</pubDate><dc:creator>tschmitt300</dc:creator></item></channel></rss>