Hello,
I have a SQL Server Database on Azure. I have created a view from a table wants to give read only access to that view only to a new login/user. I need some help on this.
1) Creating a new login/user
2) Granting read only permission to that view
Can someone help with this script?
CREATE LOGIN User1 WITH PASSWORD = '<enterStrongPasswordHere>'
GO
GRANT SELECT ON OBJECT::[dbo].[myview] TO User1