Reputation: 1
I work for a large organization that relies heavily on SQL developer for financial reconciliation. We have only SELECT privileges. Several people have access to the same SQL statements, is there a way to ensure they cant change the code? We need to ensure that people who have access to run our SQL statements to generate a report, do not have the ability to change the code. This forces them to submit change requests if they need the code change, which helps us to create and audit log of the changes made. Our financial audit includes audit of our SQL statements. With too many people making changes it is hard to track/validate the change.
Upvotes: 0
Views: 25
Reputation: 167972
SELECT
from the tables directly.ROLE
and grant the EXECUTE
privilege on the stored procedure to that role.Upvotes: 1