xtract.Customer_Group.sql 275 B

1234567891011121314151617
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [xtract].[Customer_Group] AS
  6. SELECT [timestamp]
  7. , [Code]
  8. , [Description]
  9. , [Client_DB]
  10. FROM [GC_TRANSIT_ARI].[import].[Customer_Group]
  11. GO
  12. SET QUOTED_IDENTIFIER OFF
  13. GO
  14. SET ANSI_NULLS OFF
  15. GO
  16. GO