Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Accumulating in a local variable
Message
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Stored procedures, Triggers, UDFs
Divers
Thread ID:
00662107
Message ID:
00662127
Vues:
18
Sergey pointed out one problem - you've got the FETCH in the wrong place within the loop. What value are you seeing for @txt vs. what value do you think you should be seeing? Also, give this a try:
DECLARE @txt nvarchar(4000)

SELECT 
 @txt = @txt + texto 
FROM
 Universe.dbo.textOdi
WHERE
 certif = 'PM115451'

SELECT @txt
It should produce the same results.

-Mike
Michael Levy
MCSD, MCDBA
ma_levy@hotmail.com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform