Sfoglia il codice sorgente

Service GUV ergänzt, Charge Types

Stange C11 3 settimane fa
parent
commit
ec50d814ac
2 ha cambiato i file con 16 aggiunte e 0 eliminazioni
  1. 7 0
      exec/CREATE_DWH_komplett.sql
  2. 9 0
      exec/INSERT_Charge_Types.sql

+ 7 - 0
exec/CREATE_DWH_komplett.sql

@@ -203,3 +203,10 @@ SELECT *
 INTO [dbo].[current_date_Prognose_operativ]
 FROM [GC_ETL_LOCOSOFT].[load].[current_date_Prognose_operativ]
 GO
+
+DROP TABLE IF EXISTS [dbo].[TBL_SERVICE_GUV_O21]
+GO
+SELECT *
+INTO [dbo].[TBL_SERVICE_GUV_O21]
+FROM [GC_ETL_LOCOSOFT].[load].[TBL_SERVICE_GUV_O21]
+GO

+ 9 - 0
exec/INSERT_Charge_Types.sql

@@ -0,0 +1,9 @@
+USE [GC]
+GO
+
+INSERT INTO [data].[GC_Charge_Type]
+SELECT [type]
+     , [description]
+     , [client_db]
+     , '' AS [Zuordnung]
+FROM [LOCOSOFT].[dbo].[charge_type_descriptions]