Granting Permissions to Create Function
By using the below code we can GRANT permission to create a function to a particular user
use [AdventureWorks2012] GO GRANT CREATE FUNCTION TO [bhavya] GRANT ALTER ON SCHEMA::dbo TO [bhavya]
By using the below code we can GRANT permission to create a function to a particular user
use [AdventureWorks2012] GO GRANT CREATE FUNCTION TO [bhavya] GRANT ALTER ON SCHEMA::dbo TO [bhavya]
Comments