xtract.employees.sql 687 B

12345678910111213141516171819202122232425262728293031323334
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [xtract].[employees] AS
  6. SELECT [client_db]
  7. , [is_latest_record]
  8. , [employee_number]
  9. -- , [validity_date]
  10. , [subsidiary]
  11. -- , [has_constant_salary]
  12. , [name]
  13. -- , [initials]
  14. -- , [customer_number]
  15. -- , [mechanic_number]
  16. , [salesman_number]
  17. -- , [is_business_executive]
  18. -- , [is_master_craftsman]
  19. -- , [employment_date]
  20. -- , [termination_date]
  21. -- , [leave_date]
  22. -- , [is_flextime]
  23. -- , [break_time_registration]
  24. -- , [productivity_factor]
  25. FROM [LOCOSOFT].[dbo].[employees]
  26. GO
  27. SET QUOTED_IDENTIFIER OFF
  28. GO
  29. SET ANSI_NULLS OFF
  30. GO
  31. GO