Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Filter Rows in snapshot replication

    Thanks Suresh.

    That worked for me..

    select <published_colums> From dbo.AgentQueueActivationHist where [ActivationDateTime] >= getdate() - 60

    even we can do

    select <published_colums> From dbo.AgentQueueActivationHist where [ActivationDateTime] >= dateadd(d, -60, getdate())

    Thanks for the...

Viewing post 1 (of 2 total)