35 lines
955 B
SQL
35 lines
955 B
SQL
spool /mnpapp/dbc/log/script/RU_313_2.log;
|
|
|
|
------ Giorno 23/11 DOPO LE ORE 20.00 imposto 12000 per TI e VO, 9000 per H3GI e WIND, 500 per ciascun operatore virtuale
|
|
|
|
|
|
-- imposto le capacità recipient OPIV RECIPIENT
|
|
update mnp_evasione_rec
|
|
set capacita_minima=12000,capacita_totale=12000 where cod_olo = 4;
|
|
|
|
-- imposto le capacità recipient H3GI RECIPIENT
|
|
update mnp_evasione_rec
|
|
set capacita_minima=9000,capacita_totale=9000 where cod_olo = 2;
|
|
|
|
-- imposto le capacità recipient WIND RECIPIENT
|
|
update mnp_evasione_rec
|
|
set capacita_minima=9000,capacita_totale=9000 where cod_olo = 7;
|
|
|
|
|
|
-- imposto le capacità recipient DONOR
|
|
update mnp_evasione
|
|
set CAPACITA_TOTALE = 12000 where ID_OPERATORE = 'TIMG';
|
|
|
|
update mnp_evasione
|
|
set CAPACITA_TOTALE = 500 where ID_OPERATORE = 'COOP';
|
|
|
|
update mnp_evasione
|
|
set CAPACITA_TOTALE = 500 where ID_OPERATORE = 'TISC';
|
|
|
|
update mnp_evasione
|
|
set CAPACITA_TOTALE = 500 where ID_OPERATORE = 'NOVE';
|
|
|
|
commit
|
|
/
|
|
spool off;
|
|
exit |