Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have one stored procedure which is encrypted using WITH ENCRYPTION option. Now I want to decrypt that procedure. I have already tried SP "Decryptsp2K" which is given for SQL 2000 in this forum :

http://forums.asp.net/t/1516587.aspx/1

But it deletes my SP, not decrypt. Can any one guide me ?

Thanks in advance

share|improve this question

2 Answers

up vote 9 down vote accepted

This article here still works in SQL Server 2008.

You need to connect via the DAC. See the file "Decrypt SQL 2005 stored procedures, functions, triggers, views.sql" in the download.

Just to summarise the steps that it performs for the following stored procedure definition

CREATE PROC dbo.myproc
WITH ENCRYPTION
AS
SELECT 'FOO'
  1. Retrieves the encrypted object text from the imageval column in sys.sysobjvalues and stores it in a variable @ContentOfEncryptedObject
  2. Calculates @ObjectDataLength from DATALENGTH(@ContentOfEncryptedObject)/2.
  3. Generates an ALTER PROCEDURE statement padded out to the correct length with the - character (so in this case ALTER PROCEDURE [dbo].[myproc] WITH ENCRYPTION AS------------)
  4. Executes the ALTER statement, retrieves the encrypted version from sys.sysobjvalues and stores that in the variable @ContentOfFakeEncryptedObject then rolls back the change.
  5. Generates a CREATE PROCEDURE statement padded out to the correct length with the - character (so in this case CREATE PROCEDURE [dbo].[myproc] WITH ENCRYPTION AS-----------). This gets stored in the variable @ContentOfFakeObject

It then loops through for @i = 1 to @ObjectDataLength and decrypts the definition a character at a time using the following XOR calculation.

NCHAR(
      UNICODE(SUBSTRING(@ContentOfEncryptedObject, @i, 1)) ^
      (
          UNICODE(SUBSTRING(@ContentOfFakeObject, @i, 1)) ^
          UNICODE(SUBSTRING(@ContentOfFakeEncryptedObject, @i, 1))
      )
     )
share|improve this answer
Can you please guide me which script I have to run to decrypt my SP. is it from "Decrypt SQL 2005 stored procedures, functions, triggers, views.sql" ? – Upendra Chaudhari Oct 7 '11 at 5:02
Thanks, I had run that script using DAC and it's working fine for me. – Upendra Chaudhari Oct 7 '11 at 6:14
Nice. I hadn't looked too deep into this. – gbn Oct 7 '11 at 8:54
It seems like this returns all the code but in an incorrect sequence (I'm using SQL2008R2). I have quite a long stored proc and the results need to be put back together as follows: line 9 goes to the end of line 7, line 10 goes to the end of line 8, line 11 goes to the end of line 9, but it is not consistently 2 line that jump, anyone else experiencing problems with this? – Adriaan Davel Apr 26 at 6:05
@AdriaanDavel - I didn't come across that myself when looking at the code in the article. I have also used Optillect SQL Decryptor which seems to work fine. – Martin Smith Apr 26 at 9:03

Many older tools stopped working with SQL Server 2005+. Note you must be using the Dedicated Admin Connection

A quick search shows several options.

share|improve this answer
I think it's all paid versions, not free. I have checked decryptor from elitude.net link. – Upendra Chaudhari Oct 6 '11 at 6:16
@Upendra Chaudhari: probably only paid for apps out there. It all changed with SQL Server 2005 – gbn Oct 6 '11 at 6:23
Thanks for your support. – Upendra Chaudhari Oct 7 '11 at 8:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.