2025-06-26 18:47:11 +02:00

15 lines
363 B
Transact-SQL

CREATE PROCEDURE [dbo].[sp_TraceError]
(@CallingObject [nvarchar](255),
@CallingUser [nvarchar](255),
@ErrorDate [datetime],
@ErrorDescription [nvarchar](1024))
AS INSERT INTO [dbo].[tErrors]
( [CallingObject],
[CallingUser],
[ErrorDate],
[ErrorDescription])
VALUES
( @CallingObject,
@CallingUser,
@ErrorDate,
@ErrorDescription)