Tables [dbo].[ClaimInsuranceProvider]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)0
Created10:12:49 PM Thursday, December 28, 2006
Last Modified11:13:38 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Primary Key PK_ClaimInsuranceProvider: ClaimInsuranceProviderIDClaimInsuranceProviderIDint4
No
1 - 1
Providervarchar(128)128
No
Deductiblemoney8
No
((0))
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_ClaimInsuranceProvider: ClaimInsuranceProviderIDPK_ClaimInsuranceProviderClaimInsuranceProviderID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ClaimInsuranceProvider]
(
[ClaimInsuranceProviderID] [int] NOT NULL IDENTITY(1, 1),
[Provider] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Deductible] [money] NOT NULL CONSTRAINT [DF_ClaimInsuranceProvider_Deductible] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ClaimInsuranceProvider] ADD CONSTRAINT [PK_ClaimInsuranceProvider] PRIMARY KEY NONCLUSTERED  ([ClaimInsuranceProviderID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ClaimInsuranceProvider] TO [MssExec]
GRANT INSERT ON  [dbo].[ClaimInsuranceProvider] TO [MssExec]
GRANT DELETE ON  [dbo].[ClaimInsuranceProvider] TO [MssExec]
GRANT UPDATE ON  [dbo].[ClaimInsuranceProvider] TO [MssExec]
GO
Uses
Used By