
[dbo].[ARCCustomerInformationCustomer_Legacy]
create view [dbo].[ARCCustomerInformationCustomer_Legacy]
as
select
CustomerJoinField = ARCCustomerInformation.CustomerNumber,
ARCCustomerInformation.*
from ARCCustomerInformation
GO
GRANT SELECT ON [dbo].[ARCCustomerInformationCustomer_Legacy] TO [MssExec]
GRANT INSERT ON [dbo].[ARCCustomerInformationCustomer_Legacy] TO [MssExec]
GRANT DELETE ON [dbo].[ARCCustomerInformationCustomer_Legacy] TO [MssExec]
GRANT UPDATE ON [dbo].[ARCCustomerInformationCustomer_Legacy] TO [MssExec]
GO