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 |
|
lazydev
Starting Member
16 Posts |
Posted - 2008-04-08 : 12:13:57
|
| create procedure t1 (@var int output)asbeginset @var =3enddeclare @var intexecute t1 @var outputprint @varthe output is okbut i need it like execute t1 @var output i should get value |
|
|
harsh_athalye
Master Smack Fu Yak Hacker
5581 Posts |
Posted - 2008-04-08 : 12:23:59
|
| Then why don't you include PRINT statement inside your proc?Harsh AthalyeIndia."The IMPOSSIBLE is often UNTRIED" |
 |
|
|
|
|
|