vote up 0 vote down star

Let say I have a simple Stored Procedure:

ALTER PROCEDURE [dbo].[myProc]
AS
BEGIN
   SELECT * FROM myTable
END

How can I do a WHERE statement in Microsoft SQL Server Management Studio to the stored procedure? Something like that:

SELECT * FROM myProc WHERE x = 'a'; -- But that doesn't work...
flag

You keep using that word...I do no' think it means what you think it means... – Jason Punyon Nov 4 at 21:15
2  
@Bill the Lizard: You had to ruin it... – Jason Punyon Nov 4 at 21:15
What I do not get it? What's wrong and I see no where that I use "I do no'". You care to explain? – Daok Nov 4 at 21:18
1  
@Daok: It's a very famous quote from The Princess Bride. imdb.com/title/tt0093779/quotes I edited out the word Jason was referring to (and thus ruined his joke). :) – Bill the Lizard Nov 4 at 21:20
Alright, my english is not at your level I guess :P Hope you have fun haha – Daok Nov 4 at 21:27

5 Answers

vote up 3 vote down check

It sounds like you're trying to make a "dynamic" stored procedure.

Something you might want to do is:

1) Insert the contents of your stored procedure into a temporary table

2) Use dynamic sql to apply a where condition to that temporary table.

Something like:

declare @as_condition varchar(500); --Your condition

create table #a
(
id bigint
)

insert into #a
execute sproc

declare @ls_sql varchar(max);
set @ls_sql = "select * from #a where " + @as_condition;
execute (@ls_sql);
link|flag
1  
no need for dynamic SQL select * from #a where x = 'a' Will work just fine. – HLGEM Nov 4 at 21:35
Just make sure you define the temp table with exactly the same columns the stored proc returns in the same datatypes. It will not work unless the structures match. – HLGEM Nov 4 at 21:36
vote up 1 vote down

You can't add a WHERE clause to a stored procedure like this.

You should put the clause in the sproc, like this:

ALTER PROCEDURE [dbo].[myProc]
    @X VARCHAR(10)
AS
BEGIN
SELECT * FROM myTable WHERE x=@X
END
GO

The syntax for calling a stored procedure is through the use of EXECUTE not SELECT(e.g.):

EXECUTE dbo.myProc 'a'
link|flag
I know but let say that I do not have the right to modify the procedure... – Daok Nov 4 at 21:16
1  
Then you'd have to execute the stored procedure into a temp table as Hythloth suggested and then run the restrictive query on that temp table. Though I really wouldn't use dynamic sql unless you really, really have to – AdaTheDev Nov 4 at 21:20
vote up 1 vote down

I think you can't do that.

First, the command to execute a stored procedure is EXECUTE. Here it is the reference of it:

http://msdn.microsoft.com/en-us/library/ms188332.aspx

See some more examples of the EXECUTE usage here:

http://www.sqlteam.com/article/stored-procedures-returning-data

link|flag
vote up 0 vote down

If you want the WHERE clause to be something you can "turn off" you can do this, passing in a predetermined value (e.g. -1) if the WHERE limitation is to be bypassed:

ALTER PROCEDURE [dbo].[myProc]    
@X VARCHAR(10)
AS

BEGIN
    SELECT * FROM myTable WHERE x=@X or @X = -1
END

GO
link|flag
vote up 1 vote down

SQL Server allows you to use INSERT INTO to grab a stored procedure's output. For example, to grab all processes with SPID < 10, use:

create table #sp_who (
  spid  	smallint,
  ecid  	smallint,
  status    nchar(30),
  loginame  nchar(128),
  hostname  nchar(128),
  blk   	char(5),
  dbname    nchar(128),
  cmd   	nchar(16),
  request   int)

insert into #sp_who execute sp_who 

select * from #sp_who where spid < 10
link|flag

Your Answer

Get an OpenID
or

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