forked from Jean-Baptiste-N/projet_data_JBN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbt_project.yml
97 lines (84 loc) · 2.32 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: "medical_analysis"
version: "1.0.0"
config-version: 2
profile: "default"
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target"
clean-targets:
- "target"
- "dbt_packages"
models:
medical_analysis:
+materialized: view # Défaut pour tous les modèles
staging:
+materialized: view
intermediate:
+materialized: table
nbr_hospi_total:
+schema: nbr_hospi_total
+materialized: table
nbr_hospi_découpé:
+schema: nbr_hospi_decoupe
+materialized: view
nbr_hospi_par_tranche_age:
+schema: nbr_hospi_par_tranche_age
+materialized: view
nbr_hospi_par_annee:
+schema: nbr_hospi_par_annee
+materialized: view
nbr_hospi_mart:
+schema: nbr_hospi_evolutions
+materialized: table
duree_sejours_total:
+schema: duree_sejours_total
+materialized: table
duree_sejours_découpé:
+schema: duree_sejours_decoupe
+materialized: view
duree_sejours_par_annee:
+schema: duree_sejours_par_annee
+materialized: view
duree_sejours_mart:
+schema: duree_sejours_evolutions
+materialized: table
taux_recours_total:
+schema: taux_recours_total
+materialized: table
taux_recours_découpé:
+schema: taux_recours_decoupe
+materialized: view
taux_recours_par_annee:
+schema: taux_recours_par_annee
+materialized: view
taux_recours_mart:
+schema: taux_recours_evolutions
+materialized: table
class_services_total:
+schema: class_services_total
+materialized: table
class_services_nbr_hospi:
+schema: class_services_nbr_hospi
+materialized: table
class_services_duree_sejours:
+schema: class_services_duree_sejours
+materialized: table
class_services_taux_recours:
+schema: class_services_taux_recours
+materialized: table
join_total_morbidite:
+schema: join_total_morbidite
+materialized: table
join_total_morbidite_capacite:
+schema: join_total_morbidite_capacite
+materialized: table
capacite:
+schema: capacite
+materialized: view
capacite_agg:
+schema: capacite_agg
+materialized: table