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,36 @@
CREATE OR REPLACE VIEW mnp_dw_xml_in_out_view (
id_richiesta,
msisdn,
tipo_file,
tipo_notifica,
nome_file,
direzione,
data,
data_show,
destinatario,
mittente,
canale_alternativo,
tipo_processo,
nome_file_xml,
nome_file_ack,
ord2,
numero_riga
)
AS
SELECT "ID_RICHIESTA"
, "MSISDN"
, "TIPO_FILE"
, "TIPO_NOTIFICA"
, "NOME_FILE"
, "DIREZIONE"
, "DATA"
, "DATA_SHOW"
, "DESTINATARIO"
, "MITTENTE"
, "CANALE_ALTERNATIVO"
, "TIPO_PROCESSO"
, "NOME_FILE_XML"
, "NOME_FILE_ACK"
, "ORD2"
, rownum
FROM mnp_dw_xml_in_out@dwh;