Tables [dbo].[station]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
HeapYes
Row Count0
Created11:07:31 AM Wednesday, March 07, 2007
Last Modified11:09:45 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes baseidx_station: id\typeidchar(20)20
Yes
Indexes baseidx_station: id\typetypesmallint2
Yes
max_prn_pagesint4
Yes
max_prn_timeint4
Yes
time_zonesmallint2
Yes
cci_nodevarchar(64)64
Yes
crt_dateint4
Yes
crt_timeint4
Yes
crt_idvarchar(32)32
Yes
upd_dateint4
Yes
upd_timeint4
Yes
upd_idvarchar(32)32
Yes
descrvarchar(255)255
Yes
node_typesmallint2
Yes
Indexes Indexes
NameColumnsUnique
baseidx_stationid, type
Yes
SQL Script
CREATE TABLE [dbo].[station]
(
[id] [char] (20) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[type] [smallint] NULL,
[max_prn_pages] [int] NULL,
[max_prn_time] [int] NULL,
[time_zone] [smallint] NULL,
[cci_node] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[crt_date] [int] NULL,
[crt_time] [int] NULL,
[crt_id] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[upd_date] [int] NULL,
[upd_time] [int] NULL,
[upd_id] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[descr] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[node_type] [smallint] NULL
) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [baseidx_station] ON [dbo].[station] ([id], [type]) ON [PRIMARY]
GO
Uses
Used By