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

RHNPUSHCLIENT

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
NAMEVARCHAR2(64)N  
SERVER_IDNUMBER(38)N  
JABBER_IDVARCHAR2(128)Y  
SHARED_KEYVARCHAR2(64)N  
STATE_IDNUMBER(38)N  
NEXT_ACTION_TIMETIMESTAMP(6) WITH LOCAL TIME ZONEY  
LAST_MESSAGE_TIMETIMESTAMP(6) WITH LOCAL TIME ZONEY  
LAST_PING_TIMETIMESTAMP(6) WITH LOCAL TIME ZONEY  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_PCLIENT_ID_PKID

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
SYS_C008489STATE_ID RHNPUSHCLIENTSTATE RHN_PCLIENT_STATE_ID_PK NO ACTION

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_PCLIENT_ID_PKNORMALUNIQUEID DDL script
RHN_PCLIENT_NAME_UQNORMALUNIQUENAME DDL script
RHN_PCLIENT_SID_UQNORMALUNIQUESERVER_ID DDL script

Triggers

RHN_PCLIENT_MOD_TRIG

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

REFERENCING NEW AS NEW OLD AS OLD
begin
	:new.modified := current_timestamp;
end;