SQL and/or LINQ query for determining daily increases in viewers
Posted
by
Gio
on Stack Overflow
See other posts from Stack Overflow
or by Gio
Published on 2012-04-02T17:12:14Z
Indexed on
2012/04/02
17:29 UTC
Read the original article
Hit count: 156
We're montioring usage of a certain resources by monitoring users logins (We can see user logins growing daily). After filtering out repeat inter day logins for users, we'd like to track the # of users using the service each day, and then using that info to determine overall incremental gains for each calendar day. Our table is pretty simple:
class ServiceLogin
{
String login;
DateTime loginTime;
}
© Stack Overflow or respective owner