Is there possible two fill table with second result set returned by stored proc.For instance
create proc test
as
begin
select *from orders
select *from Employees
end
insert into sometable exec test
So I want to fill table 'sometable' with result set
'select *from Employees'. There by tables 'sometable' and 'Employees' have same shema