TFM_vdMarke.sql 514 B

1234567891011121314151617181920212223242526
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [dbo].[TFM_vdMarke]
  6. AS
  7. /* Hier findet das Mapping der Spalten zwischen DWH und Transformer statt, der historisch bedingt ist. */
  8. SELECT [Mandant ID]
  9. ,[Marke] AS [Marke]
  10. ,[Bezeichnung] AS [Bezeichnung]
  11. --,[Marke (Bez.)] AS [Marke (Bez.)]
  12. --,[Bez. (Marke)] AS [Bez. (Marke)]
  13. ,[Fabrikat] AS [Fabrikat]
  14. ,[Hersteller] AS [Hersteller]
  15. FROM [dMarke]
  16. GO
  17. SET QUOTED_IDENTIFIER OFF
  18. GO
  19. SET ANSI_NULLS OFF
  20. GO
  21. GO