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.

 All Forums
 SQL Server 2000 Forums
 Transact-SQL (2000)
 Return More then 8000 character from sp

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 OUTPUT
AS
BEGIN
SELECT @x = REPLICATE('x',8000) + REPLICATE('x',8000)
END
GO





Brett

8-)
Go to Top of Page
   

- Advertisement -