data.GC_Mitarbeiter.sql 477 B

12345678910111213141516171819202122232425262728
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. create view data.[GC_Mitarbeiter] AS
  6. SELECT [Client_DB]
  7. ,[Employee_ID]
  8. ,[Name]
  9. ,[Department]
  10. ,[Zuordnung_Funktion]
  11. ,[Zuordnung_Produktiv]
  12. ,[Monteur_Ebene_1]
  13. ,[Monteur_Ebene_2]
  14. ,[Monteur_Ebene_3]
  15. ,[Zuordnung_Department_Name]
  16. ,[productivity_factor]
  17. ,[leave_date]
  18. FROM [GC].[data].[GC_Mitarbeiter]
  19. GO
  20. SET QUOTED_IDENTIFIER OFF
  21. GO
  22. SET ANSI_NULLS OFF
  23. GO
  24. GO