Wiki source code of Fabric Silver Lakehouse

Version 1.1 by Dimitri Rupp on 2026/06/11 09:16

Hide last authors
Dimitri Rupp 1.1 1 {{box cssClass="floatinginfobox" title="**On this page**"}}
2 {{toc/}}
3 {{/box}}
4
5 = Fabric Silver Lakehouse =
6
7 {{info}}
8 **Lakehouse:** (% style="font-family:monospace" %)spl_silver_lh(%%)
9 **Stage:** Silver — Transformation Zone
10 **Owner:** Workspace members (restricted access)
11 {{/info}}
12
13 == Overview ==
14
15 The Silver layer in our architecture functions as the **transformation zone** within the data pipeline. Data ingested into the **staging layer (Bronze)** is cleaned, enriched, and reshaped in the Silver layer to prepare it for **analytical consumption** — or final transformation in the **Gold layer**.
16
17 The Lakehouse designated for this layer — (% style="font-family:monospace" %)spl_silver_lh(%%) — serves as the **central repository** for all transformation logic and outputs. This Lakehouse is organised using **schema separation**, with schema names aligned to the source system or data domain. This structure supports **modular development** and simplifies **governance** across heterogeneous data sources.
18
19 Within (% style="font-family:monospace" %)spl_silver_lh(%%), two distinct categories of tables are maintained:
20
21 * **Shortcut tables** — direct references to Bronze-layer tables, created when source data is needed for intermediate transformations **without duplication**.
22 * **Transformed tables** — data that has undergone one or more processing steps (filtering, joining, normalisation, enrichment), making them suitable for downstream consumption in the Gold layer.
23
24 == Silver Lakehouse summary ==
25
26 |=(% style="width:140px" %)📋 **Data**|Contains **shortcuts** from Bronze Lakehouses **and** **transformed tables** created from them.
27 |=(% style="width:140px" %)🔄 **Transformation**|Data is processed using **Notebooks** and **Dataflows**.
28 |=(% style="width:140px" %)🔐 **Access**|Can be accessed only by **Workspace Members**.
29
30 == Architecture ==
31
32 {{mermaid}}
33 flowchart LR
34 subgraph BRZ["**Bronze**"]
35 direction TB
36 B1[(bmd_bronze_lh)]
37 B2[(rimo_bronze_lh)]
38 B3[(h3a_bronze_lh)]
39 B4[(board_bronze_lh)]
40 B5[(sharepoint_bronze_lh)]
41 end
42
43 subgraph TRANS["**Silver — Transformation**"]
44 direction TB
45 SC[Shortcut tables<br/>no duplication]
46 TR[Transformed tables<br/>cleansed / joined<br/>enriched]
47 end
48
49 subgraph SCH["**Silver schemas**"]
50 direction TB
51 SBMD[bmd]
52 SRIMO[rimo]
53 SH3A[h3a]
54 SHU[huawei]
55 SHUTCH[hutch]
56 STEF[telefonica]
57 end
58
59 BRZ --> SC
60 SC --> TR
61 TR --> SCH
62 SCH -->|consumed by| GOLD[Gold Lakehouse<br/>spl_gold_lh]
63
64 classDef brz fill:#f4a261,stroke:#b85c00,stroke-width:1px,color:#000
65 classDef sil fill:#c0c0c0,stroke:#555,stroke-width:1px,color:#000
66 classDef sch fill:#e3f2fd,stroke:#1976d2,stroke-width:1px
67 classDef gold fill:#ffd54f,stroke:#b45f06,stroke-width:1px,color:#000
68
69 class B1,B2,B3,B4,B5 brz
70 class SC,TR sil
71 class SBMD,SRIMO,SH3A,SHU,SHUTCH,STEF sch
72 class GOLD gold
73 {{/mermaid}}
74
75 == Schemas in (% style="font-family:monospace" %)spl_silver_lh(%%) ==
76
77 * (% style="font-family:monospace" %)dbo(%%) — Fabric-Default (kaum genutzt; Silver-spezifische Domaenen liegen in eigenen Schemas)
78 * (% style="font-family:monospace" %)bmd(%%) — BMD Finanz/Anlagen
79 * (% style="font-family:monospace" %)h3a(%%) — H3A Logistik
80 * (% style="font-family:monospace" %)huawei(%%) — Huawei FusionSolar
81 * (% style="font-family:monospace" %)hutch(%%) — Hutchison Bau-Forecasts
82 * (% style="font-family:monospace" %)rimo(%%) — Rimo DWH inkl. Gold-Deletion-Logs
83 * (% style="font-family:monospace" %)telefonica(%%) — Telefonica SharePoint-Files
84
85 == Notebooks in use ==
86
87 Data movement and transformation in (% style="font-family:monospace" %)spl_silver_lh(%%) is carried out using **notebooks**. The following notebooks are currently in use:
88
89 |=Notebook|=Primary scope
90 |(% style="font-family:monospace" %)70203022_H3A_5G_Rollout(%%)|Hutch 5G Rollout (baubeginn / forecast)
91 |(% style="font-family:monospace" %)huawei_fusionsun_detailedInverterReport(%%)|Huawei FusionSolar Inverter-Reports
92 |(% style="font-family:monospace" %)StoredProcedure_weekly(%%)|Wöchentliche Stored Procedures (Inventory Valuation)
93 |(% style="font-family:monospace" %)StoredProcedures_BMD(%%)|BMD-Transformationen
94 |(% style="font-family:monospace" %)StoredProcedures_BMD_Hinzufuegen_Firmen(%%)|BMD Firmen-Anreicherung (dim_firmenid)
95 |(% style="font-family:monospace" %)StoredProcedures_h3a(%%)|H3A-Transformationen
96 |(% style="font-family:monospace" %)StoredProcedures_Rimo(%%)|Rimo-Transformationen (incl. deletedRows-Logging)
97 |(% style="font-family:monospace" %)get_tef_DeliveryOffice_files_Polars(%%)|Telefonica Delivery Office files (Polars-based)
98 |(% style="font-family:monospace" %)get_tef_SharePointFiles(%%)|Telefonica SharePoint files
99
100 == Table-type overview ==
101
102 |=Type|=Count|=Meaning
103 |**shortcut**|25|Direct shortcut to a Bronze-Lakehouse table — kein Duplikat
104 |**transformed**|67|Datenverarbeitete Tabelle — Filter, Join, Normalisierung, Anreicherung
105 |**historized**|5|Historisierte Tabelle (Snapshot ueber Zeit)
106 |**deleted-log**|16|Logging fuer aus Gold geloeschte Zeilen ((% style="font-family:monospace" %)deletedRows_*(%%))
107 |**custom**|3|Custom-Tabelle (z.B. (% style="font-family:monospace" %)custom_sdmperson(%%))
108 |**helper**|1|Helper-Tabellen fuer Notebooks
109 |**staging**|3|Staging-Tabellen ((% style="font-family:monospace" %)stage_*(%%))
110 |**dimension**|1|Dimensions-Tabellen ((% style="font-family:monospace" %)dim_*(%%))
111 |**mapping**|0|Mapping-Tabellen
112 |**fact**|0|Fakten-Tabellen
113
114 == Live-Liste der Tabellen ==
115
116 The list of tables below is the **snapshot at migration time (2026-05-24)**. To always see the **current live state**, the source page provided two SQL snippets that can be run against the (% style="font-family:monospace" %)spl_silver_lh(%%) **SQL endpoint**:
117
118 {{code language="sql"}}
119 -- Run on spl_silver_lh SQL endpoint to get the live table list
120 SELECT
121 TABLE_NAME AS [Table],
122 TABLE_SCHEMA AS [Schema]
123 FROM INFORMATION_SCHEMA.TABLES
124 WHERE TABLE_TYPE = 'BASE TABLE'
125 ORDER BY TABLE_SCHEMA, TABLE_NAME;
126 {{/code}}
127
128 {{warning}}
129 **Hinweis:** Die Original-SharePoint-Page enthielt **zwei Code-Snippet-Webparts** ohne befuellten Code-Body (leere Snippet-Container). Das obige Beispiel zeigt das **Standard-Pattern** — der konkrete im SPL-Tele eingesetzte Snippet ist beim Migrieren in das produktive XWiki nachzutragen, sobald der Original-Inhalt verfuegbar ist.
130 {{/warning}}
131
132 == Tables in spl_silver_lh — by schema ==
133
134 === 🗂️ Schema: (% style="font-family:monospace" %)bmd(%%) ===
135
136 BMD ERP — Finanzbuchhaltung, Anlagen, Kostenrechnung. Mix aus Bronze-Shortcuts und Silver-Transformationen (anbu_*, fibu_*, stage_*).
137
138 **Tabellen-Anzahl:** 18
139
140 |=Table|=Created|=Type|=Description|=Executor
141 |(% style="font-family:monospace" %)anbu_anlagen(%%)|03-12-2024|transformed|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
142 |(% style="font-family:monospace" %)anbu_kpi(%%)|03-12-2024|transformed|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
143 |(% style="font-family:monospace" %)anbu_lastvalue(%%)|03-12-2024|transformed|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
144 |(% style="font-family:monospace" %)anbu_map_anlagen_projekt(%%)|03-12-2024|transformed|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
145 |(% style="font-family:monospace" %)dim_firmenid(%%)|25-11-2024|dimension|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD_Hinzufügen_Firmen(%%)
146 |(% style="font-family:monospace" %)fibu_konto(%%)|25-11-2024|transformed|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
147 |(% style="font-family:monospace" %)fibu_map_electrify(%%)|03-12-2024|transformed|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
148 |(% style="font-family:monospace" %)import_bmb_bil_acz_anlagegutsackontozu(%%)|04-08-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
149 |(% style="font-family:monospace" %)import_bmd_bil_act_anlagegutberech_tmp(%%)|04-08-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
150 |(% style="font-family:monospace" %)import_bmd_bil_agu_anlagegut(%%)|04-08-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
151 |(% style="font-family:monospace" %)import_bmd_bil_ajo_anbujournal(%%)|04-08-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
152 |(% style="font-family:monospace" %)import_bmd_bil_anz_anlagegutkostzu(%%)|04-08-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
153 |(% style="font-family:monospace" %)import_bmd_fibu_buchungen(%%)|08-05-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
154 |(% style="font-family:monospace" %)import_bmd_fibu_konto(%%)|08-05-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
155 |(% style="font-family:monospace" %)import_bmd_kore_korestamm(%%)|08-05-2025|shortcut|shortcut table from bmd_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
156 |(% style="font-family:monospace" %)stage_fibu_buchungen(%%)|03-12-2024|staging|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
157 |(% style="font-family:monospace" %)stage_fibu_letzte_zahlung(%%)|25-11-2024|staging|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
158 |(% style="font-family:monospace" %)stage_fibu_offenposten(%%)|25-11-2024|staging|—|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_BMD(%%)
159
160 === 🗂️ Schema: (% style="font-family:monospace" %)h3a(%%) ===
161
162 H3A — Logistik (Scan-Items, Historisierung).
163
164 **Tabellen-Anzahl:** 2
165
166 |=Table|=Created|=Type|=Description|=Executor
167 |(% style="font-family:monospace" %)public_sdmlogisticscanitem(%%)|08-05-2025|shortcut|shortcut table from h3a_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
168 |(% style="font-family:monospace" %)sdmlogisticscanitem_historic(%%)|05-12-2024|historized|Historized table|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_h3a(%%)
169
170 === 🗂️ Schema: (% style="font-family:monospace" %)huawei(%%) ===
171
172 Huawei — FusionSolar Inverter-Reporting (huawei_fusionsun_*-Notebook).
173
174 **Tabellen-Anzahl:** 4
175
176 |=Table|=Created|=Type|=Description|=Executor
177 |(% style="font-family:monospace" %)fs_detailed_inverter_report(%%)|06-12-2024|historized|Historized table|(% style="font-family:monospace;font-size:90%" %)huawei_fusionsun_detailedInverterReport(%%)
178 |(% style="font-family:monospace" %)fs_historizationhelper(%%)|06-12-2024|helper|Helper|(% style="font-family:monospace;font-size:90%" %)huawei_fusionsun_detailedInverterReport(%%)
179 |(% style="font-family:monospace" %)fusionsun_detail_wechselrichterbericht(%%)|06-12-2024|shortcut|shortcut table from sharepointfiles_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
180 |(% style="font-family:monospace" %)storagelocations(%%)|22-11-2024|custom|Custom table created|(% style="font-family:monospace;font-size:90%" %)—(%%)
181
182 === 🗂️ Schema: (% style="font-family:monospace" %)hutch(%%) ===
183
184 Hutchison (Hutch) — Baubeginn-/Forecast-Daten, eingespielt aus SharePoint-Files.
185
186 **Tabellen-Anzahl:** 3
187
188 |=Table|=Created|=Type|=Description|=Executor
189 |(% style="font-family:monospace" %)baubeginn_fc_historized(%%)|04-04-2025|historized|Historized table|(% style="font-family:monospace;font-size:90%" %)70203022_H3A_5G_Rollout(%%)
190 |(% style="font-family:monospace" %)current_baubeginn_fc(%%)|23-04-2025|shortcut|shortcut table from sharepointfiles_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
191 |(% style="font-family:monospace" %)forecast(%%)|17-06-2025|shortcut|shortcut table from sharepointfiles_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
192
193 === 🗂️ Schema: (% style="font-family:monospace" %)rimo(%%) ===
194
195 Rimo — DWH-Tabellen (Bronze-Shortcuts), Custom-Tabellen, deletedRows_*-Logs aus Gold, Historisierungen.
196
197 **Tabellen-Anzahl:** 35
198
199 |=Table|=Created|=Type|=Description|=Executor
200 |(% style="font-family:monospace" %)custom_sdmperson(%%)|10-01-2025|custom|Custom table with only externalid and full person name|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
201 |(% style="font-family:monospace" %)custom_sdmproductticket(%%)|26-03-2025|custom|Custom table with data type fixed. Not sure about purpose|(% style="font-family:monospace;font-size:90%" %)—(%%)
202 |(% style="font-family:monospace" %)deletedRows_sdmactivity(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
203 |(% style="font-family:monospace" %)deletedRows_sdmbsscartitem(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
204 |(% style="font-family:monospace" %)deletedRows_sdmbssmaterialaccountingorder(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
205 |(% style="font-family:monospace" %)deletedRows_sdmbssoutboundstockorder(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
206 |(% style="font-family:monospace" %)deletedRows_sdmbssprojectcontrollingitem(%%)|02-10-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
207 |(% style="font-family:monospace" %)deletedRows_sdmbssworkpackage(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
208 |(% style="font-family:monospace" %)deletedRows_sdmbsswpmilestone(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
209 |(% style="font-family:monospace" %)deletedRows_sdmincident(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
210 |(% style="font-family:monospace" %)deletedRows_sdminvoiceassignment(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
211 |(% style="font-family:monospace" %)deletedRows_sdmmaterial(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
212 |(% style="font-family:monospace" %)deletedRows_sdmmaterialchangeorder(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
213 |(% style="font-family:monospace" %)deletedRows_sdmofferitemservice(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
214 |(% style="font-family:monospace" %)deletedRows_sdmproductivizationentry(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
215 |(% style="font-family:monospace" %)deletedRows_sdmsalesorder(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
216 |(% style="font-family:monospace" %)deletedRows_sdmsubticket(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
217 |(% style="font-family:monospace" %)deletedRows_splworkentry(%%)|25-09-2025|deleted-log|Deleted rows from the table in spl_gold_lh (for logging)|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
218 |(% style="font-family:monospace" %)inventory_valuation_historic(%%)|03-01-2025|historized|Historized table|(% style="font-family:monospace;font-size:90%" %)StoredProcedure_weekly(%%)
219 |(% style="font-family:monospace" %)inventory_valuation_historic_tmp(%%)|28-12-2024|transformed|—|(% style="font-family:monospace;font-size:90%" %)—(%%)
220 |(% style="font-family:monospace" %)otbstoragedepot(%%)|21-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
221 |(% style="font-family:monospace" %)otbstoragespace(%%)|21-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
222 |(% style="font-family:monospace" %)salesorder_hierarchy(%%)|17-09-2025|transformed|Table created by joining sdmsalesorder, sdmwtrprojectgroup tables|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
223 |(% style="font-family:monospace" %)sdmdebitor(%%)|21-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
224 |(% style="font-family:monospace" %)sdmlogisticscanitem(%%)|19-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
225 |(% style="font-family:monospace" %)sdmlogisticscanitem_historic(%%)|26-11-2024|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
226 |(% style="font-family:monospace" %)sdmmanufacturer(%%)|21-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
227 |(% style="font-family:monospace" %)sdmmasteritem(%%)|21-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
228 |(% style="font-family:monospace" %)sdmmaterial(%%)|21-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
229 |(% style="font-family:monospace" %)sdmperson(%%)|02-10-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
230 |(% style="font-family:monospace" %)sdmproductticket(%%)|19-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
231 |(% style="font-family:monospace" %)sdmsalesorder(%%)|19-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
232 |(% style="font-family:monospace" %)sdmwtrprojectgroup(%%)|21-09-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
233 |(% style="font-family:monospace" %)toolaccounting(%%)|19-09-2025|historized|Historized version of toolaccounting_delta|(% style="font-family:monospace;font-size:90%" %)StoredProcedures_Rimo(%%)
234 |(% style="font-family:monospace" %)toolaccounting_delta(%%)|08-05-2025|shortcut|shortcut table from rimo_bronze_lh|(% style="font-family:monospace;font-size:90%" %)—(%%)
235
236 === 🗂️ Schema: (% style="font-family:monospace" %)telefonica(%%) ===
237
238 Telefonica — SharePoint-Files-Ingestion via get_tef_*-Notebooks (Polars). Operational Tracking, FNEP, RAN, Forecast.
239
240 **Tabellen-Anzahl:** 59
241
242 |=Table|=Created|=Type|=Description|=Executor
243 |(% style="font-family:monospace" %)abnahme_tracking_rueckbau(%%)|04-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
244 |(% style="font-family:monospace" %)acceptance_arbeitsreport_aktuell_fnep(%%)|19-05-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
245 |(% style="font-family:monospace" %)acceptance_arbeitsreport_aktuell_ran(%%)|19-05-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
246 |(% style="font-family:monospace" %)acceptance_mw_aktuell(%%)|23-05-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
247 |(% style="font-family:monospace" %)acceptance_ran_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
248 |(% style="font-family:monospace" %)batteriewuerdigkeit_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
249 |(% style="font-family:monospace" %)carrier_aktuell(%%)|17-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
250 |(% style="font-family:monospace" %)carrier_aktuell_330(%%)|19-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
251 |(% style="font-family:monospace" %)carrier_aktuell_verzoegrung(%%)|19-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
252 |(% style="font-family:monospace" %)deinstallations_tracking(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
253 |(% style="font-family:monospace" %)festnetzerweiterung_aktuell(%%)|01-07-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
254 |(% style="font-family:monospace" %)fileversioninfo(%%)|25-04-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles / get_tef_DeliveryOffice_files_Polars(%%)
255 |(% style="font-family:monospace" %)greenfield_aktuell(%%)|08-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
256 |(% style="font-family:monospace" %)gu8_projekte_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
257 |(% style="font-family:monospace" %)gu_spl(%%)|18-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_DeliveryOffice_files_Polars(%%)
258 |(% style="font-family:monospace" %)hwl_hardwarebuildproposal_gu(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
259 |(% style="font-family:monospace" %)installations_tracking(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
260 |(% style="font-family:monospace" %)instdeinstmeldungen_dim(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
261 |(% style="font-family:monospace" %)instdeinstmeldungen_im(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
262 |(% style="font-family:monospace" %)ipclock_aktuell(%%)|11-04-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
263 |(% style="font-family:monospace" %)leasedline_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
264 |(% style="font-family:monospace" %)linkketten_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
265 |(% style="font-family:monospace" %)materialsox_tracking_gu(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
266 |(% style="font-family:monospace" %)microwave_aktuell(%%)|29-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
267 |(% style="font-family:monospace" %)microwave_south_aktuell(%%)|29-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
268 |(% style="font-family:monospace" %)multiprojekt_uni_ordering(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
269 |(% style="font-family:monospace" %)multiprojekt_uni_transport(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
270 |(% style="font-family:monospace" %)multiprojekt_uni_transport_inaktiv(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
271 |(% style="font-family:monospace" %)multiprojekte_ugg_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
272 |(% style="font-family:monospace" %)multiprojekte_ugg_ordering_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
273 |(% style="font-family:monospace" %)ne73_multiprojekt_aktuell(%%)|01-07-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
274 |(% style="font-family:monospace" %)nlg_cube_aktuell(%%)|29-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
275 |(% style="font-family:monospace" %)nrg_aktuell(%%)|29-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
276 |(% style="font-family:monospace" %)poc_jsl_multiprojekt_aktuell(%%)|02-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
277 |(% style="font-family:monospace" %)poc_jsl_multiprojekt_inaktiv_aktuell(%%)|02-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
278 |(% style="font-family:monospace" %)poc_multiprojekt_aktuell(%%)|19-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
279 |(% style="font-family:monospace" %)poc_mxs_aktiv(%%)|02-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
280 |(% style="font-family:monospace" %)poc_mxs_ordering_mp(%%)|05-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
281 |(% style="font-family:monospace" %)poc_mxs_standortauftrag(%%)|05-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
282 |(% style="font-family:monospace" %)poc_standortauftrage_aktuell(%%)|15-07-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
283 |(% style="font-family:monospace" %)poc_vpn2_multiprojekt_aktuell(%%)|28-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
284 |(% style="font-family:monospace" %)router_aktuell(%%)|15-07-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
285 |(% style="font-family:monospace" %)router_swap_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
286 |(% style="font-family:monospace" %)sp_rueckbau(%%)|05-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
287 |(% style="font-family:monospace" %)sp_rueckbau_link(%%)|05-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
288 |(% style="font-family:monospace" %)sp_rueckbau_ne(%%)|05-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
289 |(% style="font-family:monospace" %)standorte_aktuell(%%)|18-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
290 |(% style="font-family:monospace" %)standortprojekte_gesamt_aktuell(%%)|28-07-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
291 |(% style="font-family:monospace" %)tdmswapout_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
292 |(% style="font-family:monospace" %)tom_wos_data_spl(%%)|25-04-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_DeliveryOffice_files_Polars(%%)
293 |(% style="font-family:monospace" %)tom_wos_wd_op_op_item(%%)|02-06-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_DeliveryOffice_files_Polars(%%)
294 |(% style="font-family:monospace" %)uts_integration_rejection_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
295 |(% style="font-family:monospace" %)uts_releases_aktuell(%%)|05-09-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
296 |(% style="font-family:monospace" %)wertberichtigungsmeldung_apt(%%)|03-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
297 |(% style="font-family:monospace" %)wertberichtigungsmeldung_dim(%%)|03-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
298 |(% style="font-family:monospace" %)wertberichtigungsmeldung_positionen(%%)|03-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
299 |(% style="font-family:monospace" %)xwdm_aktuell(%%)|08-08-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
300 |(% style="font-family:monospace" %)xwdm_multiprojekt_aktuell(%%)|25-03-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
301 |(% style="font-family:monospace" %)zugangsdaten_aktuell(%%)|10-02-2025|transformed|Table from Telefonica excel reports|(% style="font-family:monospace;font-size:90%" %)get_tef_SharePointFiles(%%)
302
303 == Operational notes ==
304
305 * **Schema-aware:** Domains sind in eigenen Schemas. Cross-Schema-Joins sind moeglich, aber Governance-relevant.
306 * **Shortcuts vs. Transformed:** Shortcuts sparen Speicher und halten Datenstand 1:1 mit Bronze. Transformed-Tabellen sind das "echte" Silver-Asset.
307 * **DeletedRows_*-Pattern:** Aus dem Gold-Lakehouse geloeschte Zeilen werden zur Audit-Sicherheit in Silver geloggt (Rimo-Schema).
308 * **Access:** Restricted to Workspace Members.
309
310 == Related pages ==
311
312 * [[Bronze Lakehouse (Hub)>>doc:IT-Wiki.01-Data.Ingestion.Bronze-Lakehouse.WebHome]]
313 * [[Fabric Lakehouse Hub>>doc:IT-Wiki.01-Data.Processing.Lakehouse.WebHome]]
314 * [[Microsoft Fabric Datenarchitektur im SPL>>doc:IT-Wiki.01-Data.Microsoft-Fabric-Datenarchitektur-im-SPL.WebHome]]
315 * [[Gold Lakehouse>>doc:IT-Wiki.01-Data.Processing.Lakehouse.Fabric-Gold-Lakehouse.WebHome]]
316
317 ----
318
319 {{info}}
320 **Migration footer**
321 **Source:** [[Fabric Silver Lakehouse (SharePoint)>>url:https://spltele.sharepoint.com/sites/WikiPowerBI/SitePages/Fabric-Silver-Lakehouse.aspx]]
322 **Original author:** Bukkerji Sreejith — Sreejith.Bukkerji@spl-tele.com
323 **Original last-modified:** 2025-10-13
324 **Migration date:** 2026-05-24
325 **Migrated by:** Dimitri Rupp via ClaudeAI
326 **Notes:** EN-Original-Intro 1:1; 3-card-Layout zu Summary-Tabelle umgesetzt; Mermaid Bronze→Silver→Gold-Diagramm ergaenzt; Notebooks-Liste extrahiert; Tabellen-Typ-Heuristik (shortcut/transformed/historized/deleted-log/custom/helper) eingefuehrt fuer Orientierung; 121 Tabellen aus 6 Schemas (bmd/h3a/huawei/hutch/rimo/telefonica) gruppiert; leere Code-Snippets der Quelle mit Standard-INFORMATION_SCHEMA-Pattern dokumentiert und Warning-Box ergaenzt.
327 {{/info}}
328
329
330 ----
331
332 == Verwandte Themen ==
333
334 //Kuratiert — kann direkt im Editor ergänzt werden://
335
336 * [[Fabric Gold Lakehouse>>doc:IT-Wiki.01-Data.Processing.Lakehouse.Fabric-Gold-Lakehouse.WebHome]]
337
338 {{include reference="IT-Wiki.Makros.Verwandte-Themen.WebHome"/}}
339
340 ----
341 **Status:** Migriert — Team-Review ausstehend · **Owner:** //(festlegen)// · **Letzter Review:** 2026-06-11
342