January 17, 2005 at 2:07 pm
Friends is there someone? that knows how to do a query that shows the store procedures from BD that are encrypted.. i dont find any parameters from the table Sysobject that shows if the procedure has been encrypted.
sorry my bad english i try to do better..
Thanks.....................
January 17, 2005 at 2:15 pm
If the text in syscomments isn't readable, then it's encrypted.
January 17, 2005 at 2:16 pm
SELECT TOP 100 PERCENT dbo.sysobjects.name, dbo.sysobjects.xtype
FROM dbo.sysobjects INNER JOIN
dbo.syscomments ON dbo.sysobjects.id = dbo.syscomments.id
WHERE (dbo.syscomments.encrypted = 1)
ORDER BY dbo.sysobjects.xtype, dbo.sysobjects.name
January 17, 2005 at 2:38 pm
I find the solution In the syscomments exists a file called encrypted, thanks
January 17, 2005 at 2:50 pm
Thanks my friend in deep
January 17, 2005 at 9:49 pm
for info...There is a decryption utility you can use if you can to view the original source. dSQLSRVD- SQL Server SysComments Decryptor 1.1 by dOMNAR.
Looks like it will not be untill SQL 2005 until the encryption will be truelly secure.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply