Viewing 5 posts - 1 through 6 (of 6 total)
mister.magoo (1/14/2013)
Is this what you mean?
Prceisely.
Thanks a lot. that works fine as I want it to.
Thanks again.
January 14, 2013 at 2:54 pm
Sean Lange (1/14/2013)
Excellent job posting ddl and sample data. Now what is the question?
🙂 Nice one.
I believe I did mention before the second set of table/columns that this is...
January 14, 2013 at 2:53 pm
On Twitter, I was pointed out this link
http://www.sqlmag.com/content1/topic/calculating-concurrent-sessions-part-1/catpath/tsql3
But this does not resolve what I'm looking for.
This is in the direction, I tried modifying the code here, but not getting anywhere....
February 20, 2012 at 4:48 am
Its here!!
SET DATEFORMAT DMY
IF OBJECT_ID('#AgentResults2', 'U') IS NOT NULL DROP TABLE #AgentResults2;
CREATE TABLE #AgentResults2 (FUser_id varchar(48), FLoginDt datetime, FLogoutDt DateTime)
Insert Into #AgentResults2 (FUser_id , FLoginDt, FLogoutDt )
Select...
February 20, 2012 at 4:44 am
Thanks Jeff.
I'll be doing that really shortly. Have been working all night. Going to get some sleep.
Cheers
February 19, 2012 at 12:47 pm
Viewing 5 posts - 1 through 6 (of 6 total)