Tables [dbo].[MilitaryBranchOfService]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)6
Created4:57:09 PM Thursday, September 7, 2006
Last Modified11:13:44 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_MilitaryBranchOfService: MilitaryBranchOfServiceIDMilitaryBranchOfServiceIDint4
No
1 - 1
BranchOfServicevarchar(32)32
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_MilitaryBranchOfService: MilitaryBranchOfServiceIDPK_MilitaryBranchOfServiceMilitaryBranchOfServiceID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[MilitaryBranchOfService]
(
[MilitaryBranchOfServiceID] [int] NOT NULL IDENTITY(1, 1),
[BranchOfService] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[MilitaryBranchOfService] ADD CONSTRAINT [PK_MilitaryBranchOfService] PRIMARY KEY CLUSTERED  ([MilitaryBranchOfServiceID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[MilitaryBranchOfService] TO [MssExec]
GRANT INSERT ON  [dbo].[MilitaryBranchOfService] TO [MssExec]
GRANT DELETE ON  [dbo].[MilitaryBranchOfService] TO [MssExec]
GRANT UPDATE ON  [dbo].[MilitaryBranchOfService] TO [MssExec]
GO
Uses
Used By