-- Verify that the stored procedure does not exist.
IF OBJECT_ID ('usp_GetErrorInfo', 'P') IS NOT NULL
DROP PROCEDURE usp_GetErrorInfo;
GO
-- Create a procedure to retrieve error information.
CREATE PROCEDURE usp_GetErrorInfo
AS
SELECT
ERROR_NUMBER() AS ErrorNumber,
ERROR_SEVERITY() AS ErrorSeverity,
ERROR_STATE() as ErrorState,
ERROR_PROCEDURE() as ErrorProcedure,
ERROR_LINE() as ErrorLine,
ERROR_MESSAGE() as ErrorMessage;
GO
BEGIN TRY
-- Generate divide-by-zero error.
SELECT 1/0;
END TRY
BEGIN CATCH
-- Execute the error retrieval routine.
EXECUTE usp_GetErrorInfo;
END CATCH;
GO
Suscribirse a:
Enviar comentarios (Atom)
SSIS - Package en blanco
Como solucionarlo: 1. Renombrar Package 2. Guardar package 3. Cerrar Solución.
-
DTCTester comprueba una transacción distribuida contra un Microsoft SQL Server especificado. Esta herramienta ayuda a probar las transaccio...
-
--'sysobjects' tiene objectos (tablas, Stores, Funcions, etc) --'syscolumns' tiene objectos (tablas, Stores, Funcions, etc)...
-
@@IDENTITY Para retornar el útlimo identity insertado (en cualquier tabla de la BD) SELECT @@IDENTITY; SELECT SCOPE_IDENTITY(); Par...
No hay comentarios:
Publicar un comentario