Table T_REPORTES Reportes |
Columns |
Name | Type | Optional | Default | Comments |
ID_REPORTE | NUMBER | Identificador del reporte | ||
TIPO | VARCHAR2(1) | Y | Tipo del reporte | |
CANTIDAD_EJECUCIONES | NUMBER | Y | Cantidad de ejecuciones del reporte | |
FECHA_ULTIMA_EJECUCION | DATE | Y | Fecha de la ultima ejecucion del reporte | |
CONSULTA_SQL | CLOB | Y | Consulta SQL del reporte | |
SQL_ULTIMA_EJECUCION | CLOB | Y | SQL de la ultima ejecucion del reporte |
Primary Key |
Name | Columns |
PK_REPORTES | ID_REPORTE |
Foreign Keys |
Name | Columns | Referencing Table | Columns |
FK_REPORTES_OPERACIONES | ID_REPORTE | T_OPERACIONES | ID_OPERACION |
Check Constraints |
Name | Condition |
CK_REPORTES_TIPO_CONSULTA_SQL | TIPO <> 'C' OR (TIPO = 'C' AND CONSULTA_SQL IS NOT NULL) |
Indexes |
Name | Columns | Type |
PK_REPORTES | ID_REPORTE | Unique |