It creates a temporary table and of an insert of the result from the stored procedure. Example:
create proc test
as
set nocount on
select au_lname from pubs..authors
go
create table #test
(
au_lname varchar(40) not null
)
insert #test
exec test
select * from #test
I expect to have helped.
It is utilizing the performace monitor for verify the NT40 with sp6 and Sql7 with sp3. In the counter "connection passive" the number they are very big and is adds to each 1 minute.
What may be happening?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.