Table T_SERVICIOS Servicios Web |
Columns |
Name | Type | Optional | Default | Comments |
ID_SERVICIO | NUMBER | Identificador del servicio | ||
TIPO | VARCHAR2(1) | Y | Tipo del servicio | |
CANTIDAD_EJECUCIONES | NUMBER | Y | Cantidad de ejecuciones del servicio | |
FECHA_ULTIMA_EJECUCION | DATE | Y | Fecha de la ultima ejecucion del servicio | |
CONSULTA_SQL | CLOB | Y | Consulta SQL del servicio | |
SQL_ULTIMA_EJECUCION | CLOB | Y | SQL de la ultima ejecucion del servicio |
Primary Key |
Name | Columns |
PK_SERVICIOS | ID_SERVICIO |
Foreign Keys |
Name | Columns | Referencing Table | Columns |
FK_SERVICIOS_OPERACIONES | ID_SERVICIO | T_OPERACIONES | ID_OPERACION |
Check Constraints |
Name | Condition |
CK_SERVICIOS_TIPO_CONSULTA_SQL | TIPO <> 'C' OR (TIPO = 'C' AND CONSULTA_SQL IS NOT NULL) |
Indexes |
Name | Columns | Type |
PK_SERVICIOS | ID_SERVICIO | Unique |