Tables [dbo].[PointOfService]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)3
Created11:16:06 AM Wednesday, January 9, 2013
Last Modified10:30:29 AM Monday, March 30, 2015
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_PointOfService: PointOfServiceIDPointOfServiceIDint4
No
1 - 1
Descriptionvarchar(32)32
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_PointOfService: PointOfServiceIDPK_PointOfServicePointOfServiceID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[PointOfService]
(
[PointOfServiceID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PointOfService] ADD CONSTRAINT [PK_PointOfService] PRIMARY KEY NONCLUSTERED  ([PointOfServiceID]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[PointOfService] TO [MssExec]
GRANT INSERT ON  [dbo].[PointOfService] TO [MssExec]
GRANT DELETE ON  [dbo].[PointOfService] TO [MssExec]
GRANT UPDATE ON  [dbo].[PointOfService] TO [MssExec]
GO
Uses
Used By