Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Jobs Sanity Check Index DDL scrips
Description Columns Primary key Check Constraints Foreign keys Unique Keys Options Indexes Referenced by Triggers Partitions

RHNSERVERINFO

DDL script

Columns

NameTypeNullableDefault valueComment
SERVER_IDNUMBER(38)N  
CHECKINTIMESTAMP(6) WITH LOCAL TIME ZONEY(current_timestamp) 
CHECKIN_COUNTERNUMBER(38)Y(0)  

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_SERVER_INFO_SID_FKSERVER_ID RHNSERVER RHN_SERVER_ID_PK NO ACTION

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_SERVER_INFO_SID_UNQNORMALUNIQUESERVER_ID DDL script

Triggers

RHN_SERVER_INFO_MOD_TRIG

Legend: comment string keyword reserved word operator
CREATE TRIGGER 
rhn_server_info_mod_trig
before insert or update on rhnServerInfo
for each row

REFERENCING NEW AS NEW OLD AS OLD
begin
	if :new.checkin is NULL
	then
	        :new.checkin := current_timestamp;
	end if;
end;