I have a request
select * into NewTab from OpenQuery(rmtServer, 'select c1, c2 from rmtTab')
When I look at the execution plan, he tells me that he runs "Spool / Eager Spool", which "stores data in a temporary table to optimize rewinding"
Now I do not expect rewind. If there is some kind of failure, I can just drop newTab and start over.
Is there a way to stop it from storing data in a temporary table?
cindi source
share