Files
2024-05-13 12:54:14 +02:00

37 lines
921 B
SQL

spool /mnpapp/dbc/log/script/RU_313_1.log;
------ Giorno 22/11 DOPO LE ORE 20.00 imposto 1000 unità per operatore di rete e 200 per i virtuali
-- imposto le capacità recipient OPIV RECIPIENT
update mnp_evasione_rec
set capacita_minima=1000,capacita_totale=1000 where cod_olo = 4;
-- imposto le capacità recipient H3GI RECIPIENT
update mnp_evasione_rec
set capacita_minima=1000,capacita_totale=1000 where cod_olo = 2;
-- imposto le capacità recipient WIND RECIPIENT
update mnp_evasione_rec
set capacita_minima=1000,capacita_totale=1000 where cod_olo = 7;
-- imposto le capacità DONOR
update mnp_evasione
set CAPACITA_TOTALE = 1000 where ID_OPERATORE = 'TIMG';
update mnp_evasione
set CAPACITA_TOTALE = 200 where ID_OPERATORE = 'COOP';
update mnp_evasione
set CAPACITA_TOTALE = 200 where ID_OPERATORE = 'TISC';
update mnp_evasione
set CAPACITA_TOTALE = 200 where ID_OPERATORE = 'NOVE';
commit;
spool off;
exit