... so do the query in EM too?Can't think why you'd want to ... but:EM, open NORTHWIND : TablesRight Click CATEGORIES : Open Table QueryDo your SQL:SELECT *INTO #KRISTENFROM [dbo].[Categories]
"8 rows effected ... [OK]"Find name of Temp Table (still in EM):SELECT nameFROM tempdb.dbo.sysobjectsWHERE name LIKE '#kristen%' AND type = 'U'
Cut&Paste result name into:SELECT *FROM tempdb.dbo.[#KRISTEN____... stuff deleted ...___00000000086F]
And there's the Edit Grid Table Thingie. Notice we are still in NORTHWIND in EMWell weird, but!Kristen