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

RHNSERVERGROUPMEMBERSHIP

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
ORG_IDNUMBER(38)NNONONO 
SERVER_IDNUMBER(38)YNONONO 
GROUP_IDNUMBER(38)NNONONO 
GROUP_NAMEVARCHAR2(64)NNONONO 
GROUP_TYPEVARCHAR2(32)YNONONO 
CURRENT_MEMBERSNUMBER(38)NNONONO 
MAX_MEMBERSNUMBER(38)YNONONO 

Query:

Legend: comment string keyword reserved word operator
SELECT   SG.org_id, SGM.server_id, SG.id, SG.name, SGT.label, SG.current_members, SG.max_members
  FROM   rhnServerGroupType SGT,
	 rhnServerGroupMembers SGM,
    	 rhnServerGroup SG
 WHERE   SG.id = SGM.server_group_id(+)
   AND   SG.group_type = SGT.id(+)