I am just wondering any good tools or software that you can recommend me to protect / encrypt my stored procedure that was developed on SQL Server 2008 R2 ?
I read about
Can't you use WITH ENCRYPTION? For example
WITH ENCRYPTION
CREATE PROCEDURE #EncryptSP WITH ENCRYPTION AS SELECT TOP 10 City FROM Person.Address GO
https://msdn.microsoft.com/en-gb/library/ms187926%28v=sql.105%29.aspx