This tip came up during a discussion amongst the Analysis Services Stored Procedure team and Chris Webb just posted about it too. Apparently you can use the GO keyword to separate MDX batches in SSMS, in much the same way that you can with T-SQL batches eg. SELECT MEASURES.MEMBERS ON 0 FROM[Adventure Works] GO SELECT [Measures].[Internet Sales Amount] ON 0,[Date].[Day of Week].MEMBERS ON 1FROM [Adventure Works] This ability is built in to SSMS, “GO” is not a valid MDX keyword. It is SSMS ......