What I need to do is, put the results of stored procedure (with lots of parameters) in to a table. Something like that:
SELECT * INTO Table_1 FROM
(
EXEC [MY_DataBase].[dbo].[GET_Report] '%%', '%%', '%%', 'x', 'x', 'x', 'x', 'x', 'x' ....
) X
However this seems to be an incorrect syntax, I searched for it and people are first creating the table manually and after using the INSERT key to put the results. This is something that I can't do, since I ve got lots of parameters and I can't create the table manually.