You should be able to insert into a temporary table without specifying a schema using OPENQUERY:
SELECT * INTO
FROM OPENQUERY(ServerName, βEXEC DataBaseName.dbo.StoredProcedureName paramvalues1, paramvalues1β²)
Where ServerName is the name of your Sql server instance. See this article for more information.
source
share