Dynamic SQL Server question - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:08:35Z http://stackoverflow.com/feeds/question/734275 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/734275/dynamic-sql-server-question 0 Dynamic SQL Server question ds1 2009-04-09T13:38:36Z 2009-04-09T22:53:43Z <p>I want to create dymamic SQL code to automatically create a table-replication.</p> <p>I'm stuck on how to make the following code dynamic, so that it's possible to pass in SQL variables and use them in the code. I help myself at the moment with search and replacing the <code>'TODO:'</code> parts, which is not very nice... Here is the code:</p> <pre><code>DECLARE @sql VARCHAR(MAX) SET @sql = '' SELECT @sql = @sql + 'exec sp_addarticle @publication = ''TODO:TREP_PUBLICATION_NAME'',@article = N''' + name + ''', @source_owner = N''dbo'', @source_object = N''' + name + ''', @type = N''logbased'', @description = N'''', @creation_script = N'''', @pre_creation_cmd = N''delete'', @schema_option = 0x0000000000000000, @identityrangemanagementoption = N''none'', @destination_table = N''' + name + ''', @destination_owner = N''dbo'', @status = 8, @vertical_partition = N''false'', @ins_cmd = N''SQL'', @del_cmd = N''SQL'', @upd_cmd = N''SQL''' FROM TODO:PUBLICATION_DB.sys.tables WHERE type = 'U' AND name IN ( SELECT name FROM OPENROWSET('SQLOLEDB', 'TODO:SUBSCRIBER_SERVER'; 'TODO:SUBSCRIBER_LOGIN'; 'TODO:SUBSCRIBER_PASSWORD', 'select * from TODO:SUBSCRIBER_DB.sys.tables where type=''U''') ) AND name IN ( SELECT TABLE_NAME FROM TODO:PUBLICATION_DB.INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE TODO:TABLE_NAME_FILTER ) EXEC(@Sql) </code></pre> <p>One problem is that I need dynamic SQL inside a dynamic SQL block. If somebody could help me to convert this code using variables I would really appreciate that!</p> <p>Thanks Daniel</p> http://stackoverflow.com/questions/734275/dynamic-sql-server-question/736164#736164 0 Answer by Michael K Campbell for Dynamic SQL Server question Michael K Campbell 2009-04-09T22:53:43Z 2009-04-09T22:53:43Z <p>Dynamic SQL might not be the answer - but that doesn't mean you can't make it easier to automate and 'parameter-ize'. </p> <p>In other words, I once managed a huge replication topology where I frequently had to tear down subscribers, and even (occasionally) recreate publications, and so on. Rather than mucking with trying to generate T-SQL that dynamically queried things and did EVERYTHING in one fell-swoop, I create a number of T-SQL Templates (.tql files) that I could then use to populate with a few parameters, and then turn loose. </p> <p>And if you're unfamiliar with templates, just check out this video - which will quickly get you up to speed: </p> <p><a href="http://www.sqlservervideos.com/video/using-sql-server-templates" rel="nofollow">http://www.sqlservervideos.com/video/using-sql-server-templates</a></p> <p>And here's an example of the kind of template I was using to add articles - as you're shooting for:</p> <pre><code>/* Add Article */ USE [&lt;database,sysname,--Default&gt;] GO EXEC sp_addarticle @publication = N'&lt;publicationName,sysname,--Default&gt;', @article = N'&lt;article_1,sysname,--Default&gt;', @source_owner = N'dbo', @source_object = N'&lt;article_1,sysname,--Default&gt;', @destination_table = N'&lt;article_1,sysname,--Default&gt;', @type = N'logbased', @creation_script = null, @description = null, @pre_creation_cmd = N'drop', @schema_option = &lt;bitmask_1,binary(8),0x000000000000CCD3&gt;, @status = 16, @vertical_partition = N'false', @ins_cmd = N'CALL sp_MSins_&lt;article_1,sysname,--Default&gt;', @del_cmd = N'CALL sp_MSdel_&lt;article_1,sysname,--Default&gt;', @upd_cmd = N'MCALL sp_MSupd_&lt;article_1,sysname,--Default&gt;', @filter = null, @sync_object = null, @auto_identity_range = N'false' GO EXEC sp_addarticle @publication = N'&lt;publicationName,sysname,--Default&gt;', @article = N'&lt;article_2,sysname,--Default&gt;', @source_owner = N'dbo', @source_object = N'&lt;article_2,sysname,--Default&gt;', @destination_table = N'&lt;article_2,sysname,--Default&gt;', @type = N'logbased', @creation_script = null, @description = null, @pre_creation_cmd = N'drop', @schema_option = &lt;bitmask_2,binary(8),0x000000000000CCD3&gt;, @status = 16, @vertical_partition = N'false', @ins_cmd = N'CALL sp_MSins_&lt;article_2,sysname,--Default&gt;', @del_cmd = N'CALL sp_MSdel_&lt;article_2,sysname,--Default&gt;', @upd_cmd = N'MCALL sp_MSupd_&lt;article_2,sysname,--Default&gt;', @filter = null, @sync_object = null, @auto_identity_range = N'false' GO EXEC sp_addarticle @publication = N'&lt;publicationName,sysname,--Default&gt;', @article = N'&lt;article_3,sysname,--Default&gt;', @source_owner = N'dbo', @source_object = N'&lt;article_3,sysname,--Default&gt;', @destination_table = N'&lt;article_3,sysname,--Default&gt;', @type = N'logbased', @creation_script = null, @description = null, @pre_creation_cmd = N'drop', @schema_option = &lt;bitmask_3,binary(8),0x000000000000CCD3&gt;, @status = 16, @vertical_partition = N'false', @ins_cmd = N'CALL sp_MSins_&lt;article_3,sysname,--Default&gt;', @del_cmd = N'CALL sp_MSdel_&lt;article_3,sysname,--Default&gt;', @upd_cmd = N'MCALL sp_MSupd_&lt;article_3,sysname,--Default&gt;', @filter = null, @sync_object = null, @auto_identity_range = N'false' GO EXEC sp_addarticle @publication = N'&lt;publicationName,sysname,--Default&gt;', @article = N'&lt;article_4,sysname,--Default&gt;', @source_owner = N'dbo', @source_object = N'&lt;article_4,sysname,--Default&gt;', @destination_table = N'&lt;article_4,sysname,--Default&gt;', @type = N'logbased', @creation_script = null, @description = null, @pre_creation_cmd = N'drop', @schema_option = &lt;bitmask_4,binary(8),0x000000000000CCD3&gt;, @status = 16, @vertical_partition = N'false', @ins_cmd = N'CALL sp_MSins_&lt;article_4,sysname,--Default&gt;', @del_cmd = N'CALL sp_MSdel_&lt;article_4,sysname,--Default&gt;', @upd_cmd = N'MCALL sp_MSupd_&lt;article_4,sysname,--Default&gt;', @filter = null, @sync_object = null, @auto_identity_range = N'false' GO </code></pre> <p>And in some cases... I also used these templates which in turn had some nested/dynamic SQL. But by using both, I found that I was able to very easily tame some of the more redundant tasks necessary without over-complicating things. </p>