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 |
|
SijoJose
Starting Member
1 Post |
Posted - 2009-06-17 : 09:55:51
|
| Alter Proc SSSAsDeclare @S Varchar(10)Set @S=1 Select @S As SDSDeclare @SDS Varchar(10)set @SDS = Execute SSSSelect @SDS i am not able to assign return value to the variable when I executed the procedure.Can anybody help me. Your feedback will be helpful |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-06-17 : 10:00:10
|
| return value through output parameter created on procedure. |
 |
|
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2009-06-17 : 10:08:55
|
You are trying to create a recursive stored procedure?You are altering procedure SSS to execute procedure SSS... E 12°55'05.63"N 56°04'39.26" |
 |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-06-17 : 10:14:46
|
may be this is what you wantAlter Proc SSS@S Varchar(10) OUTPUTAsSet @S=1 Select @S As SDSGODeclare @SDS Varchar(10)Execute SSS @SDS OUTPUTSelect @SDS |
 |
|
|
|
|
|