SQL Decryptor is the leading tool for decrypt SQL stored procedures, triggers, views and user defined functions. Compatible with SQL Server 2000, 2005 and 2008, its user-friendly interface allows for easy viewing and editing of encrypted code, with T-SQL syntax highlighting and multiple format exportation.
It enable you to reduces time and money spent restoring lost source code to encrypted SQL objects. Never pay another developer to recreate and debug all of your lost SQL source code.
1. Run "SQLDecryptor.exe" directly.
2. Name: User
Orga: Company
S/N: 0314171F-5B22-8DB9-CA6C-FDFDAC30
3. Click "Register" button, wait for a while. It will show "Successfully registered!"
Every time you run this program, it is required to do these steps again.
4. If meets "DAC login fail", see the bellows dotted-line Q&A.
5. Finished.
-------------------------------------------------------------------------
Q: Why "DAC login fail" appear when connecting to SQL SERVER?
A: If SQL Decryptor can't login to your server and gives an error about DAC error than probably to your server is too restricted. You can read MS articles about how to enable DAC permanently or use our solution which enables this mode temporarily.
By default the DAC is only available from a client on the server. To enable remote clients to utilize the DAC an option needs to be set which can be done using sp_configure
sp_configure 'remote admin connections', 1;
GO
RECONFIGURE;
GO
then restart the SQL service.
-------------------------------------------------------------------------