Tables [dbo].[LSOtherServices]
Properties
PropertyValue
Row Count (~)0
Created4:57:08 PM Thursday, September 7, 2006
Last Modified10:46:02 AM Thursday, April 21, 2011
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_LSOtherServices: LSOPriKeyLSOPriKeyint4
No
1 - 1
LSPriKeyint4
No
ICPriKeyint4
No
Quantityfloat8
No
Amountmoney8
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_LSOtherServices: LSOPriKeyPK_LSOtherServicesLSOPriKey
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[LSOtherServices]
(
[LSOPriKey] [int] NOT NULL IDENTITY(1, 1),
[LSPriKey] [int] NOT NULL,
[ICPriKey] [int] NOT NULL,
[Quantity] [float] NOT NULL,
[Amount] [money] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[LSOtherServices] ADD CONSTRAINT [PK_LSOtherServices] PRIMARY KEY CLUSTERED  ([LSOPriKey]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[LSOtherServices] TO [MssExec]
GRANT INSERT ON  [dbo].[LSOtherServices] TO [MssExec]
GRANT DELETE ON  [dbo].[LSOtherServices] TO [MssExec]
GRANT UPDATE ON  [dbo].[LSOtherServices] TO [MssExec]
GO
Uses