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

RHNENTITLEDSERVERS

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
IDNUMBER(38)NNONONO 
ORG_IDNUMBER(38)NNONONO 
DIGITAL_SERVER_IDVARCHAR2(64)NNONONO 
SERVER_ARCH_IDNUMBER(38)NNONONO 
OSVARCHAR2(64)NNONONO 
RELEASEVARCHAR2(64)NNONONO 
NAMEVARCHAR2(128)YNONONO 
DESCRIPTIONVARCHAR2(256)YNONONO 
INFOVARCHAR2(128)YNONONO 
SECRETVARCHAR2(64)NNONONO 

Query:

Legend: comment string keyword reserved word operator
select distinct
    S.id,
    S.org_id,
    S.digital_server_id,
    S.server_arch_id,
    S.os,
    S.release,
    S.name,
    S.description,
    S.info,
    S.secret
from
    rhnServerGroup SG,
    rhnServerGroupType SGT,
    rhnServerGroupMembers SGM,
    rhnServer S
where
    S.id = SGM.server_id
and SG.id = SGM.server_group_id
and SGT.label IN ('enterprise_entitled')
and SG.group_type = SGT.id
and SG.org_id = S.org_id