vote up 1 vote down star

Helo,

My question is I have one Stored Procedure in SQL Server that returns counts of a field. I want to store the results of this Stored Procedure in a variable (scalar?) of a different stored procedure.

sp_My_Other_SP:

CREATE PROCEDURE [dbo].sp_My_Other_SP
@variable int OUTPUT -- The returned count
AS

BEGIN -- SP

SET NOCOUNT ON;

SET @SQL = "SELECT COUNT(*) FROM blah"
EXEC(@SQL)

END -- SP

I currently do it like:

DECLARE @count int

EXEC sp_My_Other_SP @count OUTPUT

Then I use it like

IF (@count > 0)
BEGIN
...
END

However its returning the other Stored Procedure results as well as the main Stored Procedure results which is a problem in my .NET application.

-----------
NoColName
-----------
14

-----------
MyCol
-----------
abc
cde
efg

(Above is an attempted representation of the results sets returned)

I would like to know if there is a way to store the results of a Stored Procedure into a variable that doesn't also output it.

Thanks for any help.

flag

2  
you'll have to show us more code since your question isn't clear. – Mladen Prajdic Aug 27 at 15:49
I agree.. show us the whole context.. the call to the "other" stored proc. – madcolor Aug 27 at 15:51
The problem is that the sproc returning the count includes more than that in its resultset, and this output is turning up in the 2nd sproc. – OMG Ponies Aug 27 at 15:55

2 Answers

vote up 3 vote down check

You can capture the results of the stored procedure into a temp table so it is not returned by the calling stored procedure.

create table #temp (id int, val varchar(100))
insert into #temp
exec sp_My_Other_SP @value, @value, @value, @count OUTPUT
link|flag
1  
I used this approach but rather than a hash table I used the TABLE scalar type like: DECLARE @temp_tbl TABLE( value int ) INSERT INTO @temp_tbl EXEC sp_My_SP SET @count = (SELECT TOP 1 value FROM @temp_tbl) – Phil Aug 27 at 16:09
This is of course less efficient since you're selecting data you don't care about. You'd be better off adding a new parameter to sp_My_Other_SP that controls whether or not the result set is returned if you're just looking for a count. – Crappy Coding Guy Aug 27 at 21:40
That doesn't make sense, I care about the count as I will always use it and it is vital to the rest of the SP. – Phil Sep 2 at 14:49
vote up 4 vote down

Well, the easiest way to fix this is to recode the stored proc so that the select statement that returns the 'other' result set you don't want in this case is conditionally extecuted, only when you are NOT asking for the count

Add another parameter called @GetCount

@GetCount TinyInt Defualt = 0 // or
@GetCount Bit Default = 0

Then instead of just

Select ...

write

   If @GetCount = 1
     Select ...
link|flag

Your Answer

Get an OpenID
or

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