Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to deal with the table name as a variable.Then I must using dynamic sql and therefore I must using Stored procedure. But the problem that how can I use the stored procedure like a custom sql function.

e.g: select col1,(Exec sp1 param1,'tbName') from table1

share|improve this question
6  
You can't. The only way of using a stored procedure in an at all similar way is using a loop backed connection but then you would need to use dynamic SQL to pass the parameter to the stored procedure leaving you no better off! – Martin Smith May 13 '11 at 2:01
2  
You don't "need" at all: perhaps you should give us the bigger picture so we can offer solutions... – gbn May 13 '11 at 5:08
1  
OP said: I need to deal with the table name as a variable, I say: this is most likely the result of a design problem. you can use your plyers as a hammer, it may work a little, but that isn't what they were designed to do. Use the hammer instead. – KM. May 13 '11 at 13:09

3 Answers

up vote 1 down vote accepted

Finally,I changed my design and and use dynamic SQL in one upper level.

share|improve this answer

This will be posible in sql server denali that introduces the new keywords "WITH RESULTSET".

The alternative on current sql versions is passing a temp-table to the stored procedure

share|improve this answer
I believe it's the scalar result, not the result set, that the OP is after. They have to use an SP, because they need to pass a table name as a parameter, and that implies dynamic scripting, which in turn implies that a function cannot be used (otherwise this question wouldn't exist). – Andriy M May 13 '11 at 9:35

Stored procedures can return scalar values through output parameters. Here's an example (from here).

Create the stored prodecure like this:

CREATE PROCEDURE _4P_test 
  @intInput int,
  @intOutput int OUTPUT
AS
set @intOutput = @intInput + 1 
go

Call it like this:

declare @intResult int
exec _4P_test 3 ,@intResult OUT
select @intResult

However you should try to design your system so that you don't have to use dynamic SQL in the way you described.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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