select SPECIFIC_NAME from [database_name].information_schema.routines where routine_type = 'PROCEDURE'
Granting the permission to execute specific stored procedure
GRANT EXECUTE ON [_TextGet] TO [some_user]
Granting the permission to execute all stored procedures
GRANT EXEC TO [some_user]
GO