Prior to executing a sensitive sql command I wanted to do a sanity check.
I am trying to delete records that have a [LoadDt
] date value older than 3 days and my code is:
delete IntraDayStats
where DATEDIFF(dd, LoadDt, dateadd(d,-3, getdate()) ) >= 3
I want to schedule this as a sql job so that my IntraDayStats
table has a rolling 3 day history. The job will run nightly.