Im trying to execute a stored procedure and simply insert its results in a temporary table, and I\'m getting the following message:
The operation coul
Have you tried using openquery?
insert into table select * from openquery(myservername, 'exec mydatabase.dbo.mystoredproc param1, param2, param3')