|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, September 28, 2012 1:36 PM
Points: 2,
Visits: 29
|
|
| Can someone please help me understand the usefulness of encrypting a stored procedure?
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Thursday, June 13, 2013 1:48 PM
Points: 1,084,
Visits: 811
|
|
| I see this mostly used in "packaged" applications that have a SQL backend. It's so you can't use the logic in their sprocs. I have rarely seen this used in "in house" applications
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, September 28, 2012 1:36 PM
Points: 2,
Visits: 29
|
|
| Thanks for that. To recap, it makes sense to encrypt client or distributed object, not necessarily objects that will remain on a central server, even a serve to which those clients my connect?
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Thursday, June 13, 2013 1:48 PM
Points: 1,084,
Visits: 811
|
|
| If you want to hide the text from anyone who has access to view the object definition, that is when you will want to use encryption.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Tuesday, March 26, 2013 9:55 AM
Points: 1,024,
Visits: 2,768
|
|
so i fyou have written your own appication then you may want to encrypt your SP's etc so your customers cannot see the underlying code...
Gethyn Ellis
gethynellis.com
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Monday, October 25, 2010 6:09 AM
Points: 1,621,
Visits: 409
|
|
Hi
At times, it is needed that you encrypt the text of stored procedures containing sensitive information. SQL Server provides the WITH ENCRYPTION to encrypt the text of the stored procedure.
CREATE procedure [dbo].[Ten Most Expensive Products Encyrpt] WITH ENCRYPTION AS SET ROWCOUNT 10 SELECT Products.ProductName AS TenMostExpensiveProducts, Products.UnitPrice FROM Products ORDER BY Products.UnitPrice DESC
Once the stored procedure has been created WITH ENCRYPTION, attempts to view the stored procedure returns a message specifying that the text is encrypted:
EXEC sp_helptext usp_SEL_EmployeePayHistory
'The text for object 'Ten Most Expensive Products Encyrpt' is encrypted.'
One note of caution. Save the original text of the stored procedure before encrypting it, as there is no straightforward way to decode the encrypted text. One hack is to attach a debugger to the server process and retrieve the decrypted procedure from memory at runtime.
Check out the below link http://www.sqlservercurry.com/2008/02/how-to-encrypt-stored-procedure-in-sql.html
Thanks -- Vj http://dotnetvj.blogspot.com
Thanks -- Vijaya Kadiyala www.dotnetvj.com SQL Server Articles For Beginers
|
|
|
|