show/hide this revision's text 2 code format

Hi,

I want to create dymamic SQL code to automatically create a T-replicationtable-replication.

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 'TODO:' parts, which is not very nice... Here is the code:

DECLARE @sql varchar(maxVARCHAR(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 FROM
  TODO:PUBLICATION_DB.sys.tables
where type='UWHERE
  type      = 'and U'
  AND name in IN (
    select SELECT 
      name
    from 
OPENROWSET('SQLOLEDB','TODO:SUBSCRIBER_SERVER';'TODO:SUBSCRIBER_LOGIN';'TODO:SUBSCRIBER_PASSWORD'FROM
      OPENROWSET('SQLOLEDB', 'TODO:SUBSCRIBER_SERVER';
                 'TODO:SUBSCRIBER_LOGIN';
                 'TODO:SUBSCRIBER_PASSWORD', 'select * from TODO:SUBSCRIBER_DB.sys.tables where type=''U''' type=''U''')
  )
  and AND name in IN (
    select SELECT
      TABLE_NAME
    from FROM
      TODO:PUBLICATION_DB.INFORMATION_SCHEMA.TABLE_CONSTRAINTS
    WHERE
      TODO:TABLE_NAME_FILTER
  )

EXEC(@Sql)

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!

Thanks Daniel

show/hide this revision's text 1

Dynamic SQL Server question

Hi,

I want to create dymamic SQL code to automatically create a T-replication.

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 'TODO:' parts, which is not very nice... Here is the 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)

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!

Thanks Daniel