xtract.Dealer_Status.sql 297 B

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