Tables [dbo].[wkresourceprofile]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
HeapYes
Row Count0
Created11:07:45 AM Wednesday, March 07, 2007
Last Modified11:07:45 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
resourceidvarchar(17)17
No
jobidint4
No
stationidvarchar(21)21
Yes
amountint4
Yes
weightint4
Yes
SQL Script
CREATE TABLE [dbo].[wkresourceprofile]
(
[resourceid] [varchar] (17) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[jobid] [int] NOT NULL,
[stationid] [varchar] (21) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[amount] [int] NULL,
[weight] [int] NULL
) ON [PRIMARY]
GO
Uses