Views [dbo].[vCustomerInformation]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created2:30:42 AM Saturday, February 4, 2017
Last Modified2:30:46 AM Saturday, February 4, 2017
Columns
Name
CustomerNumber
CustomerName
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE view [dbo].[vCustomerInformation]
(
    CustomerNumber,
    CustomerName
)
as
select
    CustomerNumber = RM00101.CUSTNMBR,
    CustomerName = ltrim( rtrim( RM00101.CUSTNAME ) )
from CAROL..RM00101 as RM00101
GO
GRANT SELECT ON  [dbo].[vCustomerInformation] TO [MssExec]
GRANT INSERT ON  [dbo].[vCustomerInformation] TO [MssExec]
GRANT DELETE ON  [dbo].[vCustomerInformation] TO [MssExec]
GRANT UPDATE ON  [dbo].[vCustomerInformation] TO [MssExec]
GO
Uses
Used By