Create the table based on the recordset that will be returned from the stored procedure. Then use the INSERT statement. For instance:
INSERT INTO MyTable
(Col1, Col2, Col3, Col4)
EXEC dbo.MyStoredProc
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring
http://www.netimpress.com/shop/product.asp?ProductID=NI-SQL1
K. Brian Kelley
@kbriankelley