dears,
While Monitoring CPU usage from DBQL for each user, grouped by day/hour/statement type.
we find that [CheckPoint Loading] statement type consumes Most of CPU for any user uses utilities , that refer to more than 90% of CPU utilization accross the day.
We are using a query like this one:
select
logdate,
AcctStringHour,
username,
StatementType,
sum(AMPCPUTimeNorm ) SumCpu
where logdate between '2013-01-27' and current_date
and username in ......
↧