Nifi init

This commit is contained in:
2026-05-17 16:54:29 +02:00
parent 6203332841
commit 9cc58c20f4
15 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
INSERT INTO DIM_DATE (date_key, full_date, year, quarter, month, month_name, week_number, day_of_month, day_name)
VALUES (
${date_key},
TO_DATE('${full_date}', 'YYYY-MM-DD'),
${year},
${quarter},
${month},
'${month_name}',
${week_number},
${day_of_month},
'${day_name}'
)