/*==============================================================*/ /* Database name: Database */ /* DBMS name: ORACLE Version 10g */ /* Created on: 29/12/2009 15:06:15 PM */ /*==============================================================*/ -- SQL script that update fitBank squema -- To run this script from the SQL Plus, perform the following steps: -- 1. connect to the database -- 2. set define character to ! -- "set define !" -- 3. issue the command "@ " -- where represents the name of this script spool fitbank201062017.log /*==============================================================*/ /* Table: TSALDOS */ /*==============================================================*/ alter table TSALDOS add CAPITALREDUCIDO NUMBER(19,6); comment on column TSALDOS.CAPITALREDUCIDO is 'Capital reducido en la moneda de la cuenta'; /*==============================================================*/ /* Table: TMOVIMIENTOS */ /*==============================================================*/ alter table TMOVIMIENTOS add CAPITALREDUCIDO NUMBER(19,6); comment on column TMOVIMIENTOS.CAPITALREDUCIDO is 'Capital reducido en la moneda de la cuenta'; spool off