RHNSNAPSHOTSERVERGROUP
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| SNAPSHOT_ID | NUMBER(38) | N | | |
| SERVER_GROUP_ID | NUMBER(38) | N | | |
Foreign Keys:

Options:
| Option | Settings |
|---|
| Tablespace | USERS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
Indexes:
Triggers
RHN_SNAPSHOTSG_MOD_TRIG
Legend: string keyword reserved word operator
CREATE TRIGGER
rhn_snapshotsg_mod_trig
before insert or update on rhnSnapshotServerGroup
for each row
REFERENCING NEW AS NEW OLD AS OLD
begin
update rhnSnapshot set modified = current_timestamp where id = :new.snapshot_id;
end;