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,50 @@
CREATE OR REPLACE FUNCTION RECIPIENT_ONLINE_MSISDN
RETURN NUMBER
IS
--
-- To modify this template, edit file FUNC.TXT in TEMPLATE
-- directory of SQL Navigator
--
-- Purpose: Briefly explain the functionality of the function
--
-- MODIFICATION HISTORY
-- Person Date Comments
-- --------- ------ -------------------------------------------
errore NUMBER (1);
-- Declare program variables as shown above
BEGIN
errore := 0;
IF errore = 0
THEN
dwh.update_rec_online_msisdn (errore);
END IF;
IF errore = 0
THEN
dwh.update_rec_hoc_online_msisdn (errore);
END IF;
IF errore = 0
THEN
dwh.update_rec_tacs_online_msisdn (errore);
END IF;
IF errore = 0
THEN
dwh.sla_recipient_on_demand (errore);
END IF;
RETURN errore;
EXCEPTION
WHEN OTHERS
THEN
errore := 1;
DBMS_OUTPUT.put_line (
'Errore in RECIPIENT_ONLINE_MSISDN '
|| SQLERRM
);
RETURN errore;
END; -- Procedure
/