RHNACTIONDAEMONCONFIG
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| ACTION_ID | NUMBER(38) | N | | |
| INTERVAL | NUMBER(38) | N | | |
| RESTART | CHAR(1) | N | 'Y'
| |
| CREATED | DATE | N | (sysdate)
| |
| MODIFIED | DATE | N | (sysdate)
| |
Check Constraints:
| Constraint Name | Check Condition |
|---|
| RHN_ACTIONDC_REST_CK | restart in ('Y','N') |
Foreign Keys:

Options:
| Option | Settings |
|---|
| Tablespace | DATA_TBS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
Indexes:
Triggers
RHN_ACTIONDC_MOD_TRIG
Legend: string keyword reserved word operator
CREATE TRIGGER
rhn_actiondc_mod_trig
before insert or update on rhnActionDaemonConfig
for each row
REFERENCING NEW AS NEW OLD AS OLD
begin
:new.modified := sysdate;
end;