Error trying to create a Proc in the database

0

I'm trying to run a Stored Procedure in the database and it's giving this message:

  

Can not grant, deny, or revoke permissions to sa, dbo, entity owner,   information_schema, sys, or yourself

How do I resolve this?

If Proc already exists and I just change it, I squeeze. I just can not run a new one.

I made this select:

SELECT * FROM fn_my_permissions(NULL, 'SERVER');
GO

And I received this:

  

server ;; CONNECT SQL

     

server ;; VIEW ANY DATABASE

What does this mean?

    
asked by anonymous 17.04.2017 / 21:36

1 answer

0

Following the guidance of Motta, which I assign to him the resolution of my problem, I did the following to solve. I commented GRANT at the end of PROC and circled PROC in development environment. This solved my problem.

    
18.04.2017 / 13:27