First Commit - Source Code from Reply

This commit is contained in:
vincenzofariello
2024-05-13 12:54:14 +02:00
parent 73e32a5020
commit a15aee1f08
11184 changed files with 1065913 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
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