Difference between revisions of "Dbo.ErrorLog (table)"

From dbscript Online Help
Jump to: navigation, search
Line 12: Line 12:
  
  
 +
=== Columns ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
|- style="background:silver"
Line 18: Line 19:
 
| '''Nullable
 
| '''Nullable
 
| '''Default
 
| '''Default
| '''Description / PK / Index
+
| '''Description
 
 
 
|- valign="top"
 
|- valign="top"
Line 25: Line 26:
 
| not null
 
| not null
 
|  
 
|  
| Primary key for ErrorLog records.<br />PK_ErrorLog_ErrorLogID
+
| Primary key for ErrorLog records.
 
|- valign="top"
 
|- valign="top"
 
| ErrorTime
 
| ErrorTime
Line 31: Line 32:
 
| not null
 
| not null
 
| (getdate())
 
| (getdate())
| The date and time at which the error occurred.<br />
+
| The date and time at which the error occurred.
 
|- valign="top"
 
|- valign="top"
 
| UserName
 
| UserName
Line 37: Line 38:
 
| not null
 
| not null
 
|  
 
|  
| The user who executed the batch in which the error occurred.<br />
+
| The user who executed the batch in which the error occurred.
 
|- valign="top"
 
|- valign="top"
 
| ErrorNumber
 
| ErrorNumber
Line 43: Line 44:
 
| not null
 
| not null
 
|  
 
|  
| The error number of the error that occurred.<br />
+
| The error number of the error that occurred.
 
|- valign="top"
 
|- valign="top"
 
| ErrorSeverity
 
| ErrorSeverity
Line 49: Line 50:
 
| null
 
| null
 
|  
 
|  
| The severity of the error that occurred.<br />
+
| The severity of the error that occurred.
 
|- valign="top"
 
|- valign="top"
 
| ErrorState
 
| ErrorState
Line 55: Line 56:
 
| null
 
| null
 
|  
 
|  
| The state number of the error that occurred.<br />
+
| The state number of the error that occurred.
 
|- valign="top"
 
|- valign="top"
 
| ErrorProcedure
 
| ErrorProcedure
Line 61: Line 62:
 
| null
 
| null
 
|  
 
|  
| The name of the stored procedure or trigger where the error occurred.<br />
+
| The name of the stored procedure or trigger where the error occurred.
 
|- valign="top"
 
|- valign="top"
 
| ErrorLine
 
| ErrorLine
Line 67: Line 68:
 
| null
 
| null
 
|  
 
|  
| The line number at which the error occurred.<br />
+
| The line number at which the error occurred.
 
|- valign="top"
 
|- valign="top"
 
| ErrorMessage
 
| ErrorMessage
Line 73: Line 74:
 
| not null
 
| not null
 
|  
 
|  
| The message text of the error that occurred.<br />
+
| The message text of the error that occurred.
 
|}
 
|}
  
 +
=== Primary Key ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Primary Key
 +
| '''Columns
 +
|-
 +
| PK_ErrorLog_ErrorLogID
 +
| ErrorLogID
 +
|}
  
 
+
=== Dependencies ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
|- style="background:silver"
Line 90: Line 100:
  
 
|}
 
|}
 
  
  

Revision as of 00:05, 3 February 2010

wikibot

Table dbo.ErrorLog
Description Audit table tracking errors in the the AdventureWorks database that are caught by the CATCH block of a TRY...CATCH construct. Data is inserted by stored procedure dbo.uspLogError when it is executed from inside the CATCH block of a TRY...CATCH construct.


Columns

Column Data Type Nullable Default Description
ErrorLogID int not null Primary key for ErrorLog records.
ErrorTime datetime not null (getdate()) The date and time at which the error occurred.
UserName sysname not null The user who executed the batch in which the error occurred.
ErrorNumber int not null The error number of the error that occurred.
ErrorSeverity int null The severity of the error that occurred.
ErrorState int null The state number of the error that occurred.
ErrorProcedure nvarchar(126) null The name of the stored procedure or trigger where the error occurred.
ErrorLine int null The line number at which the error occurred.
ErrorMessage nvarchar(4000) not null The message text of the error that occurred.

Primary Key

Primary Key Columns
PK_ErrorLog_ErrorLogID ErrorLogID

Dependencies

Reference Type Object Type Referencing Object
Insert Procedure dbo.uspLogError


automatically generated

Table dbo.ErrorLog
Description Audit table tracking errors in the the AdventureWorks database that are caught by the CATCH block of a TRY...CATCH construct. Data is inserted by stored procedure dbo.uspLogError when it is executed from inside the CATCH block of a TRY...CATCH construct.


Column Data Type Nullable Default Description / PK / Index
ErrorLogID int not null Primary key for ErrorLog records.
PK_ErrorLog_ErrorLogID
ErrorTime datetime not null (GETDATE()) The date and time at which the error occurred.
UserName sysname not null The user who executed the batch in which the error occurred.
ErrorNumber int not null The error number of the error that occurred.
ErrorSeverity int null The severity of the error that occurred.
ErrorState int null The state number of the error that occurred.
ErrorProcedure nvarchar(126) null The name of the stored procedure or trigger where the error occurred.
ErrorLine int null The line number at which the error occurred.
ErrorMessage nvarchar(4000) not null The message text of the error that occurred.


Reference Type Object Type Referencing Object
Insert Procedure dbo.uspLogError