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-20 : 09:59:53
|
| atulpatel writes "Hello sir,I want to Create a Store Procedure which has output parameter which type like Text or image. how can it possible to modify this parameter in Store procedure." |
|
|
X002548
Not Just a Number
15586 Posts |
Posted - 2004-04-20 : 11:38:42
|
Nope....CREATE PROC mySproc99 @x text OUTPUTAS BEGIN SELECT @x = REPLICATE('x',8000) + REPLICATE('x',8000) ENDGOBrett8-) |
 |
|
|
|
|
|