G
Guest
My stored proc works fine without the temp table code.
INTO #temp
from #temp
drop table #temp
When the temp table code is in place, Excel throws out the
error message at this point
--If Not rsData.EOF Then
Run time error 3704
Operation is not allowed when object is closed
It would be ideal to use temp tables for this project.
any advice ?
INTO #temp
from #temp
drop table #temp
When the temp table code is in place, Excel throws out the
error message at this point
--If Not rsData.EOF Then
Run time error 3704
Operation is not allowed when object is closed
It would be ideal to use temp tables for this project.
any advice ?