Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2004-04-21 : 10:19:38
|
| Chandresh writes "Hi,Last two days I am working on this issue but I couldn't found any solution. I hope you help me...Question:=========I wrote two procedure...First=====CREATE PROCEDURE RStringVal @mStr varchar(2) OUTPUTAS SET @mStr = "DispField";GOSecond======CREATE PROCEDURE GetStringVal @mTemp varchar(2)AS EXEC RStringVal @mTemp; SELECT @mTemp;GOIn second procedure @mTemp value shows null and i want to get 'DispField' text but I am not able to get this text so HOW CAN I SET THIS VALUE AND GET THIS VALUE.Thanks in Advance." |
|
|
kroky
Starting Member
14 Posts |
Posted - 2004-04-21 : 10:31:29
|
| CREATE PROCEDURE GetStringVal@mTemp varchar(2)ASEXEC RStringVal @mTemp OUTPUT;SELECT @mTemp;GO |
 |
|
|
|
|
|