Last Login date/time stamp in crowd

Neeta Dubey March 18, 2015

Hi

I need help in retriving last login date/time stamp for all users in crowd. I looked at kb which give information about MYsql. We use SQL database. Could some one please provide the sql query?

https://confluence.atlassian.com/display/CROWDKB/List+the+Last+Login+Date+for+all+Users+in+Crowd

 

1 answer

1 accepted

2 votes
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 18, 2015

Which SQL database are you using?  MySQL is an SQL database, as is Oracle, PostGreSQL, Microsoft SQL Server, MariaDB etc etc etc.

Although, that doesn't really matter.  There are minor differences in syntax between them, but SQL for one of them is the same for most of them.  So the SQL you've found for MySQL should translate directly into whatever database you are using, as long as it's basic (select * from where, update x where, that sort of phrase) and not using clever functions.

Neeta Dubey March 18, 2015

We are using Mircrosoft sql server. sql query for crowd.png

Neeta Dubey March 18, 2015

02:15:42 [SELECT - 0 row(s), 0.000 secs] [Error Code: 195, SQL State: 42000] 'from_unixtime' is not a recognized built-in function name. ... 1 statement(s) executed, 0 row(s) affected, exec/fetch time: 0.000/0.000 sec [0 successful, 0 warnings, 1 errors]

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 19, 2015

Ah, yes, a clever function. From (a creaking) memory, you can replace from_unixtime(12345) with dateadd(s,12345,1/1/1970)

Suggest an answer

Log in or Sign up to answer