Dynamic query to open row set required

  • hi all

    use info_db

    Insert Into dbo.Server_Details_Table

    select A.*

    FROM

    OPENROWSET ('SQLNCLI10', 'server=hrad;trusted_connection=yes',

    'set fmtonly off exec [MASTER].[dbo].[SP_SQL_Server_Info_ToReport]')as A

    Howcan i make server name dynamic here

    because i nedd to pass different servers names then the above query needs to execute and i.e with windows authentication.

    Help in advance

    Sridevi

  • Hi Sridevi,

    I hope you are looking for a solution like below

    DECLARE @SQL nvarchar(max)

    DECLARE @Server nvarchar(100) = N'hrad'

    SET @SQL = N'

    Insert Into dbo.Server_Details_Table

    select A.*

    FROM

    OPENROWSET (''SQLNCLI10'', ''server=' + @Server + ';trusted_connection=yes'',

    ''set fmtonly off exec [MASTER].[dbo].[SP_SQL_Server_Info_ToReport]'')as A'

    exec sp_executesql @SQL

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply