MSSQL Analyses related to user administration
Benutzerbezogen
Dieser Artikel bietet Beispiele für eine benutzerverwaltungsbezogene Analyse mit dem Dashboard.
Anzahl der erstellten Benutzer und Gesamtzahl der Benutzer pro Monat
SELECT
concat(DATEPART(yy, ident.creationTime),'-', DATEPART(mm, ident.creationTime)) AS Month,
SUM(1) AS Number,
(SELECT
COUNT(*) FROM view_identity
WHERE identitytype = 'USER' AND
concat(DATEPART(yy, creationTime),'-', DATEPART(mm, creationTime)) <= concat(DATEPART(yy, ident.creationTime),'-', DATEPART(mm, ident.creationTime))
) AS Total
FROM view_identity ident WHERE identitytype = 'USER'
GROUP BY concat(DATEPART(yy, ident.creationTime),'-', DATEPART(mm, ident.creationTime));
© TIM Solutions GmbH | AGB | Datenschutz | Impressum