xtract.employees_worktimes.sql 395 B

1234567891011121314151617181920212223
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [xtract].[employees_worktimes] AS
  6. SELECT [client_db]
  7. -- , [is_latest_record]
  8. , [employee_number]
  9. , [validity_date]
  10. , [dayofweek]
  11. , [work_duration]
  12. -- , [worktime_start]
  13. -- , [worktime_end]
  14. FROM [LOCOSOFT].[dbo].[employees_worktimes]
  15. GO
  16. SET QUOTED_IDENTIFIER OFF
  17. GO
  18. SET ANSI_NULLS OFF
  19. GO
  20. GO