Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: SQL Server 2005 Stored Procedure Permissions

    -- Create a new role

    CREATE ROLE SP_Fn_executor

    -- Grant execute to the created role

    GRANT EXECUTE TO SP_Fn_executor

    The above statement would create a role and grant execute permission on all...

Viewing post 1 (of 1 total)