Forum Replies Created

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

  • RE: Passing dynamic variable in a DTS

    Hi,

    here is a dynamic way for your tsql...

    declare @query varchar(4000)

    declare @server varchar(50)

    declare @error int

    set @server = @@servername

    set @query = 'SELECT  T1.EMPLID,T1.EMPLNAME,T1.EFFECTIVE_DATE

    FROM  EMPLOYEE.DBO.TBL1 T1

    WHERE  T1.ORGID = ''TT''

    AND T1.ENTYCODE = ''T''

    AND T1.FISCAL_YR...

  • RE: Can Alerts REALLY be emailed to me from SQL Server?

    On our servers we have installed a Tool called SENDMAIL. I use this tool to send dynamic error mails to selected people if jobs end with error.

    The syntax looks...

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