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 standard login id and password.
Which is shared with every one.
Hence some way where I can allow every one to execute the procedure.
But they shouldn’t see the script.
Cheers!
thanks
You’re looking for
WITH ENCRYPTION, which encrypts the code behind your stored proc.Just a caveat, from MSDN:
Some references and further reading: