SQL Server: Is there a way to provide execution using a graphical interface?

Is there a way to grant permissions to execute a role or user using the GUI (and not T-SQL)? I am using SQL Server 2008 SP1.

+6
sql-server sql-server-2008 permissions
source share
2 answers
+2
source share

Yes, there is a way. Permissions page of the Database Properties window.

After the database properties windows are displayed, follow steps 1 through 4 and click OK .

Using steps A , B , you can verify that it creates the exactly expected GRANT EXECUTE TO command.

enter image description here

+6
source share

All Articles