I have an SQL 2005 database with a front end written in C++.
I am using all stored procedures and views to access the tables and I am granting execute privledges and select privledges on the views. I also need to allow users to create and alter views.
I don't want the user to have the ability to see the code in the stored procedures. Or have the ability to modify the code. If they have SQL Management Studio then all of the code in the stored procedure is easily accessed.
How do I hide this code? Or how do I hide the Stored Procedure names, or both.
I am using all stored procedures and views to access the tables and I am granting execute privledges and select privledges on the views. I also need to allow users to create and alter views.
I don't want the user to have the ability to see the code in the stored procedures. Or have the ability to modify the code. If they have SQL Management Studio then all of the code in the stored procedure is easily accessed.
How do I hide this code? Or how do I hide the Stored Procedure names, or both.