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