TFM_vdPLZ.sql 558 B

1234567891011121314151617181920212223242526
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [dbo].[TFM_vdPLZ]
  6. AS
  7. /* Hier findet das Mapping der Spalten zwischen DWH und Transformer statt, der historisch bedingt ist. */
  8. SELECT [Mandant ID]
  9. ,[PLZ] AS [PLZ]
  10. --,[Ort] AS [Ort]
  11. ,[PLZ Ort] AS [PLZ Ort]
  12. ,[PLZ 1-stellig] AS [PLZ 1-stellig]
  13. ,[PLZ 2-stellig] AS [PLZ 2-stellig]
  14. ,[PLZ 3-stellig] AS [PLZ 3-stellig]
  15. ,[PLZ 4-stellig] AS [PLZ 4-stellig]
  16. FROM [dPLZ]
  17. GO
  18. SET QUOTED_IDENTIFIER OFF
  19. GO
  20. SET ANSI_NULLS OFF
  21. GO
  22. GO