xtract.absence_reasons.sql 277 B

12345678910111213141516171819
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [xtract].[absence_reasons] AS
  6. SELECT [client_db]
  7. , [id]
  8. , [description]
  9. , [is_annual_vacation]
  10. FROM [LOCOSOFT].[dbo].[absence_reasons]
  11. GO
  12. SET QUOTED_IDENTIFIER OFF
  13. GO
  14. SET ANSI_NULLS OFF
  15. GO
  16. GO