xtract.makes.sql 720 B

1234567891011121314151617181920212223242526272829303132
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [xtract].[makes] AS
  6. SELECT [client_db]
  7. , [make_number]
  8. -- , [is_actual_make]
  9. , [description]
  10. -- , [group_name]
  11. -- , [make_id_in_group]
  12. -- , [internal_labour_group]
  13. -- , [is_production_year_visible]
  14. -- , [is_transmission_no_visible]
  15. -- , [is_engine_no_visible]
  16. -- , [is_ricambi_no_visible]
  17. -- , [ricambi_label]
  18. -- , [is_preset_finance_stock_rate]
  19. -- , [rate_free_days_new_vehicle]
  20. -- , [rate_free_days_demo_vehicle]
  21. -- , [special_service_2_interval]
  22. -- , [special_service_3_interval]
  23. FROM [LOCOSOFT].[dbo].[makes]
  24. GO
  25. SET QUOTED_IDENTIFIER OFF
  26. GO
  27. SET ANSI_NULLS OFF
  28. GO
  29. GO