R
Ronnie R
Hi there,
I've written a query that I'm going to use to see the users that have had
'activity' in the last '20' minutes on my site.
SELECT * from [ASPState].[dbo].[ASPStateTempSessions]
where LockDate > DATEADD(MINUTE, -20, GETDATE())
It appears to do the job, but I'm assuming LockDate is a good column to use.
Any thoughts people? Thanks
I've written a query that I'm going to use to see the users that have had
'activity' in the last '20' minutes on my site.
SELECT * from [ASPState].[dbo].[ASPStateTempSessions]
where LockDate > DATEADD(MINUTE, -20, GETDATE())
It appears to do the job, but I'm assuming LockDate is a good column to use.
Any thoughts people? Thanks