Files
PMS_Fidelity/script_db/prova1.sql
2019-05-07 10:47:36 +02:00

13 lines
338 B
SQL
Executable File

/* label Cobol = 100301
Update tabella tipi card per interfaccia con Pms 04/04/19 A.B.
Iserto operatore per money interface 15/04/19 A.B.
*/
connect to 'SYSMONEY' 'SYSADM' '';
ALTER TABLE DEFAULT_TIPCARD ADD (TPC_FL_SALDO_DEBITO SMALLINT);
UPDATE DEFAULT_TIPCARD SET TPC_FL_SALDO_DEBITO = 0;
disconnect;
quit;