Tables [dbo].[gla_errors]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
HeapYes
Row Count0
Created12:30:58 PM Sunday, December 05, 2010
Last Modified12:30:58 PM Sunday, December 05, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
descriptiontextmax
Yes
record_timeint4
Yes
agentint4
Yes
error_codeint4
Yes
SQL Script
CREATE TABLE [dbo].[gla_errors]
(
[description] [text] COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[record_time] [int] NULL,
[agent] [int] NULL,
[error_code] [int] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
Uses