Skip to content

Commit 20835c7

Browse files
Update ACS_EventIDs.sql
1 parent 1c401ce commit 20835c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Declare @total float
22
Select @total = count(EventId) from AdtServer.dvHeader
3-
Select count(EventId),EventId, cast(convert(float,(count(EventId)) / (convert(float,@total)) * 100) as decimal(10,2))
3+
Select count(EventId) AS Count,EventId, cast(convert(float,(count(EventId)) / (convert(float,@total)) * 100) as decimal(10,2)) AS PercentOfTotalEvents
44
From AdtServer.dvHeader
55
Group by EventId Order by count(EventId) desc

0 commit comments

Comments
 (0)