SQL - Asignacion error a variable y mandar por mail

 
Vista:

Asignacion error a variable y mandar por mail

Publicado por andres (1 intervención) el 25/01/2012 15:40:25
Hola gente, tengo el siguiente codigo y no me funciona, alguien sabe porque? No me llega el mail. Gracias!!


USE AdventureWorksDW;
GO

BEGIN TRY
-- Generate a divide-by-zero error.
SELECT 1/0;
END TRY
BEGIN CATCH

declare @ERRORMESSAGE nvarchar(4000);
select @ERRORMESSAGE= ERROR_MESSAGE();


EXEC msdb.dbo.sp_send_dbmail
@recipients='xxx@xxx',
@subject = 'Prueba de maillss',
@body = @ERRORMESSAGE,
@profile_name = PRUEBA;

END CATCH;
GO
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder