
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2010 11:13 AM
Hi,
is it possible to generate report like this:
-list of users who were logged on on more than one workstation in last 30 days-
is it possible to generate report like this:
-list of users who were logged on on more than one workstation in last 30 days-
Labels:
- Labels:
-
Archive
12 REPLIES 12

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2010 12:22 PM
Add top 1000000
Select top 1000000 tblCPlogoninfo.Username, tblCPlogoninfo.Domain,
Count(tblCPlogoninfo.Computername) As total
From tblCPlogoninfo
Where tblCPlogoninfo.logontime > GetDate() - 30
Group By tblCPlogoninfo.Username, tblCPlogoninfo.Domain
Order By Count(tblCPlogoninfo.Computername) Desc

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2010 12:19 PM
can not save this query as report.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2010 11:25 AM
try this:
Select tblCPlogoninfo.Username, tblCPlogoninfo.Domain,
Count(tblCPlogoninfo.Computername) As total
From tblCPlogoninfo
Where tblCPlogoninfo.logontime > GetDate() - 30
Group By tblCPlogoninfo.Username, tblCPlogoninfo.Domain
Order By Count(tblCPlogoninfo.Computername) Desc
