p align="justify"> / * Created on: 02.01.2014 6:01:07 * / table «Copy» constraint FK_COPY_LOCATED_PLACE; table «Copy» constraint FK_COPY_REPLACED_REPLACEM; table «Copy» constraint FK_COPY_THERE_IS_BOOK; table « Copy »constraint FK_COPY_WRITEOFF_WRITEOFF; table« Issuance »constraint FK_ISSUANCE_ISSUED_COPY; table« Issuance »constraint FK_ISSUANCE_TAKES_READER; table« saved »constraint FK_SAVED_SAVED_SECTION; table« saved »constraint FK_SAVED_SAVED2_BOOK; table« Book » cascade constraints; index «located_FK»; index «writeoff_FK»; index «replaced_FK»; index «there_is_FK»; table «Copy» cascade constraints; index «issued_FK»; index «takes_FK»; table «Issuance» cascade constraints; table «Place» cascade constraints; table «Reader» cascade constraints; table «Replacement» cascade constraints; table «Section» cascade constraints; table «Writeoff» cascade constraints; index «saved2_FK»; index «saved_FK»; table «saved» cascade constraints;
/ * ======================================== =============
/ * Table: «Book» * /
/ * ======================================== ============= table «Book» CHAR (13) not null,
«bName» VARCHAR2 (100) not null,
«bAuthor» VARCHAR2 (100) not null,
«bPlace» VARCHAR2 (40) not null,
«bPublish» VARCHAR2 (40) not null,
«bYear» INTEGER not null,
«bPages» INTEGER not null, PK_BOOK primary key (ISBN)
);
/ * ======================================== =============
/ * Table: «Copy» * /
/ * ======================================== ============= table «Copy»
(
«cNumber» INTEGER not null,
«woCode» INTEGER, CHAR (13) not null,
«repCode» INTEGER,
«plCode» INTEGER not null,
«cCost» NUMBER (8,2) not null,
«cDate» DATE not null,
«cLost» SMALLINT, PK_COPY primary key («cNumber»)
);
/ * ======================================== =============
/ * Index: «there_is_FK» * /
/ * ======================================== ============= index «there_is_FK» on «Copy» (ASC
);
/ * ======================================== =============
/ * Index: «replaced_FK» * /
/ * ======================================== ============= index «replaced_FK» on «Copy» (
«repCode» ASC
);
/ * ======================================== =============
/ * Index: «writeoff_FK» * /
/ * ======================================== ============= index «writeoff_FK» on «Copy» (
«woCode» ASC
);
/ * ======================================== =============
/ * Index: «located_FK» * /
/ * ======================================== ============= index «loca...