load.Service_Umsaetze.sql 550 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE
  6. OR
  7. ALTER VIEW [load].[Service_Umsaetze]
  8. AS
  9. SELECT [G L Account No],
  10. [Posting Date],
  11. [Document Type],
  12. [Document No],
  13. [Description],
  14. [Amount],
  15. [Gen Bus Posting Group],
  16. [Service Ledger Entry No],
  17. [Invoice Date],
  18. [Hauptbetrieb],
  19. [Branch Code],
  20. [Standort],
  21. [Entry No],
  22. [Order No],
  23. [Ebene3],
  24. [Zeile],
  25. [Umsatz Lohn],
  26. [Umsatz Sonstiges],
  27. [Make Code],
  28. [Marke],
  29. [Department Code]
  30. FROM [export_csv].[Service_Umsaetze]
  31. GO
  32. SET QUOTED_IDENTIFIER OFF
  33. GO
  34. SET ANSI_NULLS OFF
  35. GO
  36. GO