Hi all!
I've stumbled over a new problem and have not found anything yet on the Internet:
I call a stored procedure (by another vendor) this way:
DECLARE @return_value int,
@AnzahlBenutzer int,
@BenutzerSendefehler int,
@Fehlerprotokoll nvarchar(max)
EXEC @return_value = [dbo].[pl_VersendeBenutzer]
@AnzahlBenutzer = @AnzahlBenutzer OUTPUT,
@BenutzerSendefehler = @BenutzerSendefehler OUTPUT,
@Fehlerprotokoll = @Fehlerprotokoll OUTPUT
This script outputs the following text under "messages" when I execute it in management studio:
"
row updated
row updated
row updated
row updated
row updated
row updated
"
Is there any way for me to select this message text into a variable inside my script?
Thanks a lot,
Anne
I've stumbled over a new problem and have not found anything yet on the Internet:
I call a stored procedure (by another vendor) this way:
DECLARE @return_value int,
@AnzahlBenutzer int,
@BenutzerSendefehler int,
@Fehlerprotokoll nvarchar(max)
EXEC @return_value = [dbo].[pl_VersendeBenutzer]
@AnzahlBenutzer = @AnzahlBenutzer OUTPUT,
@BenutzerSendefehler = @BenutzerSendefehler OUTPUT,
@Fehlerprotokoll = @Fehlerprotokoll OUTPUT
This script outputs the following text under "messages" when I execute it in management studio:
"
row updated
row updated
row updated
row updated
row updated
row updated
"
Is there any way for me to select this message text into a variable inside my script?
Thanks a lot,
Anne