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

RHN_CUSTOMER_MONITORING

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
RECIDNUMBER(38)NYESYESYES 
DESCRIPTIONVARCHAR2(128)NYESYESYES 
SCHEDULE_IDNUMBER(38)YNONONO 
DEF_ACK_WAITNUMBER(38)YNONONO 
DEF_STRATEGYNUMBER(38)YNONONO 
PREFERRED_TIME_ZONECHAR(3)YNONONO 
AUTO_UPDATENUMBER(38)YNONONO 

Query:

Legend: comment string keyword reserved word operator
select	org.id			recid,
	org.name		description,
	1			schedule_id,	--24 x 7
	0			def_ack_wait,
	1			def_strategy,	--Broadcast, No Ack
	'GMT'			preferred_time_zone,
	0			auto_update	--Windows only
from
	web_customer org
where	1=1