Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Jobs Sanity Check Index DDL scrips
Description Columns Query Constraints Triggers

RHNSERVERCRASHCOUNT

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
SERVER_IDNUMBER(38)NNONONO 
UNIQUE_COUNTNUMBER(38)YNONONO 
TOTAL_COUNTNUMBER(38)YNONONO 
LAST_REPORTTIMESTAMP(6) WITH LOCAL TIME ZONEYNONONO 

Query:

Legend: comment string keyword reserved word operator
select server_id,
       count(id) as unique_count,
       sum(count) as total_count,
       max(modified) as last_report
  from rhnServerCrash
 group by server_id