Script used in this video to Create Database Role in SQL Server
USE [SalesOrders]
GO
CREATE ROLE [CustTableReader] AUTHORIZATION [TECHBROTHERS\kscott]
GO
USE [SalesOrders]
GO
ALTER AUTHORIZATION ON SCHEMA::[dbo] TO [CustTableReader]
GO
USE [SalesOrders]
GO
GRANT SELECT ON [dbo].[Customers] TO [CustTableReader]
GO
USE [SalesOrders]
GO
GRANT UPDATE ON [dbo].[Customers] TO [CustTableReader]
GO
USE [SalesOrders]
GO
GRANT VIEW DEFINITION ON [dbo].[Customers] TO [CustTableReader]
GO
Create Database Role in SQL Server
Would you be able to help with me with the formula of a single measure that can return multiple values in a vlookup https://testmyspeed.onl/ into a single cell separated by a comma.
ReplyDelete