vote up 2 vote down star

Title says it all - is it possible to do this? I have some filters set in my source Stored Procedure and I really don't want to have to duplicate it in another just to get the rowcount.

flag

4 Answers

vote up 2 vote down check

The only way I know how to do this is to insert into a temp table from the stored procedure and then select the count. Unfortunately, there's no pretty way to perform a "select" on a stored procedure.

CREATE TABLE #stuff (id int, status char(6))
INSERT #stuff (id, status)
EXEC dbo.sp_get_stuff

SELECT count(*) FROM #stuff

DROP TABLE #stuff

Edit

The above method will allow you to select from a stored procedure, but as Greg pointed out, a rowcount can be simplified to:

EXEC dbo.sp_get_stuff
SELECT @@Rowcount
link|flag
I think this is what I was looking for. Let me give it a whirl... – Mike C. Apr 6 at 22:27
3  
Why use a temp table when @@ROWCOUNT works fine, with practically zero performance overhead, and is much simpler to use? – Greg Beech Apr 21 at 13:59
@Greg - You're correct – LFSR Consulting Apr 21 at 14:27
@Greg - Is there a way to return only the rowcount instead of returning both the results and the rowcount? I'm trying to fine tune this as much as possible. Thanks! – Mike C. Apr 21 at 15:25
vote up -2 vote down

can you give an example?? You could call the sproc and just do a count on the results?

link|flag
Yes, that's exactly what I want to do. How do I do that? – Mike C. Apr 6 at 22:26
vote up 2 vote down

This also works:

create proc pTest1
as
select * from comp
go

create proc pTest2
as
exec pTest1
select @@rowcount
GO
link|flag
Is there a way to return only the rowcount instead of returning both the results and the rowcount? I'm trying to fine tune this as much as possible. Thanks! – Mike C. Apr 21 at 15:24
Not easily no, you can catch the resultset in a local table like LFSR said. See also here stackoverflow.com/questions/605996/… – edo.dosoft.nl Apr 22 at 14:42
vote up 0 vote down

If you are really trying to fine tune as much as possible, then you will have to change the source stored procedure. If you are looking at performance, then returning the rowset just to get the count is not something to even consider.

link|flag
You're right. I had tunnel vision. – Mike C. Jul 29 at 18:12
Been there, done that! – Darian Miller Jul 30 at 2:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.