I have written a stored procedure in SQL Server.
Now its just that I don\'t want any one to see my script or edit it.
Please remember that I am working on the a
Use the encryption keyword for your stored procedure. This will hide the code:
encryption
CREATE PROCEDURE dbo.foo WITH ENCRYPTION AS BEGIN SELECT 'foo' END