i need to find the records 10 min before system current datetime.
select Id,TimeStamp from ISAlive where RecordUpdatedDate < GETDATE() --SYSDATETIME()
SELECT Id, TimeStamp FROM ISAlive WHERE RecordUpdatedDate < DATEADD(minute,-10, SYSDATETIME());