Tables [dbo].[CustomerStatementTitle]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)2
Created6:18:11 PM Tuesday, February 27, 2007
Last Modified11:13:39 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_CustomerStatementTitle: CustomerStatementTitleIDCustomerStatementTitleIDint4
No
1 - 1
Titlevarchar(64)64
No
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_CustomerStatementTitle: CustomerStatementTitleIDPK_CustomerStatementTitleCustomerStatementTitleID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[CustomerStatementTitle]
(
[CustomerStatementTitleID] [int] NOT NULL IDENTITY(1, 1),
[Title] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CustomerStatementTitle] ADD CONSTRAINT [PK_CustomerStatementTitle] PRIMARY KEY NONCLUSTERED  ([CustomerStatementTitleID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[CustomerStatementTitle] TO [MssExec]
GRANT INSERT ON  [dbo].[CustomerStatementTitle] TO [MssExec]
GRANT DELETE ON  [dbo].[CustomerStatementTitle] TO [MssExec]
GRANT UPDATE ON  [dbo].[CustomerStatementTitle] TO [MssExec]
GO
Uses
Used By