I\'ve looked at other questions on Stack Overflow related to this question, but none of them seemed to answer this question clearly.
We have a system Stored Procedure ca
You can do an OPENROWSET(), but there are some security/performance issues involved.
OPENROWSET()
SELECT * FROM OPENROWSET ('SQLOLEDB', 'Server=(local);TRUSTED_CONNECTION=YES;', 'exec mystoredproc')
Traditionally, adding it to a temp variable/table will work.