Tables [dbo].[CustomerStatementStatementCycle]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)7
Created10:12:49 PM Thursday, December 28, 2006
Last Modified10:40:30 AM Thursday, April 21, 2011
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_CustomerStatementStatementCycle: CustomerStatementStatementCycleIDCustomerStatementStatementCycleIDint4
No
1 - 1
StatementCycleIDsmallint2
Yes
StatementCyclevarchar(32)32
No
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_CustomerStatementStatementCycle: CustomerStatementStatementCycleIDPK_CustomerStatementStatementCycleCustomerStatementStatementCycleID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[CustomerStatementStatementCycle]
(
[CustomerStatementStatementCycleID] [int] NOT NULL IDENTITY(1, 1),
[StatementCycleID] [smallint] NULL,
[StatementCycle] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CustomerStatementStatementCycle] ADD CONSTRAINT [PK_CustomerStatementStatementCycle] PRIMARY KEY NONCLUSTERED  ([CustomerStatementStatementCycleID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GRANT INSERT ON  [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GRANT DELETE ON  [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GRANT UPDATE ON  [dbo].[CustomerStatementStatementCycle] TO [MssExec]
GO
Uses