Guest User

Untitled

a guest
Apr 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. DROP TABLE Dataset_Demand_Test
  2.  
  3. SELECT *
  4. INTO Dataset_Demand_Test
  5. FROM dbo.vwSODemand
  6. UNION ALL
  7. SELECT *
  8. FROM dbo.vwOODemand
  9.  
  10. ------Dataset_EstockInventory
  11. TRUNCATE TABLE Dataset_EstockInventory_Test
  12.  
  13. INSERT INTO Dataset_EstockInventory_Test
  14. EXECUTE dbo.ESTOCKInventory
  15.  
  16. ----Dataset_GlobalPosition
  17.  
  18. DROP TABLE Dataset_GlobalPosition_Test
  19.  
  20. SELECT *
  21. INTO Dataset_GlobalPosition_Test
  22. FROM vwGlobalPositionV2
  23.  
  24. ------Dataset_GrowerInformation
  25. TRUNCATE TABLE Dataset_GrowerInformation_Test
  26.  
  27. INSERT INTO Dataset_GrowerInformation_Test
  28. EXECUTE dbo.GrowersReport_SSRS
Add Comment
Please, Sign In to add comment