
[dbo].[PlasticInstrumentCustomer_Legacy]
create view [dbo].[PlasticInstrumentCustomer_Legacy]
(
InstrumentID,
CustomerJoinField
)
as
select
InstrumentID = PlasticInstrument.InstrumentID,
CustomerJoinField = PlasticInstrument.CustomerNumber
from PlasticInstrument
GO
GRANT SELECT ON [dbo].[PlasticInstrumentCustomer_Legacy] TO [MssExec]
GRANT INSERT ON [dbo].[PlasticInstrumentCustomer_Legacy] TO [MssExec]
GRANT DELETE ON [dbo].[PlasticInstrumentCustomer_Legacy] TO [MssExec]
GRANT UPDATE ON [dbo].[PlasticInstrumentCustomer_Legacy] TO [MssExec]
GO