Tables Previous topic Chapter index Next topic

TMP_CUBO

 

Description

(There is no description for table TMP_CUBO)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

 

PERIODO

 

CHAR(4)

 

 

 

 

MES

 

CHAR(2)

 

 

 

 

DIA

 

CHAR(3)

 

 

 

 

CENTRO

 

CHAR(5)

 

 

 

 

CUENTA

 

CHAR(30)

 

 

 

 

DEBITO

 

NUMERIC(17,4)

 

 

 

 

CREDITO

 

NUMERIC(17,4)

 

 

 

 

BASE

 

NUMERIC(17,4)

 

 

 

 

ID

 

INTEGER

 

 

 

Triggers

(There are no triggers for table TMP_CUBO)

 

Indices

Index

Fields

Active

Unique

Order

TMP_CUBO_IDX1

ID

ASC

TMP_CUBO_IDX2

CUENTA

ASC

 

References

(There are no references for table TMP_CUBO)

 

Referenced By

(There are no tables referenced by table TMP_CUBO)

 

Definition

CREATE TABLE TMP_CUBO (
    PERIODO  CHAR(4),
    MES      CHAR(2),
    DIA      CHAR(3),
    CENTRO   CHAR(5),
    CUENTA   CHAR(30),
    DEBITO   NUMERIC(17,4),
    CREDITO  NUMERIC(17,4),
    BASE     NUMERIC(17,4),
    ID       INTEGER
);


CREATE INDEX TMP_CUBO_IDX1 ON TMP_CUBO (ID);
CREATE INDEX TMP_CUBO_IDX2 ON TMP_CUBO (CUENTA);

 

     Previous topic Chapter index Next topic