How can i do a query that shows the store procedures that have been encrypted?

  • 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.....................

  • If the text in syscomments isn't readable, then it's encrypted.

  • 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

  • I find the solution In the syscomments exists a file called encrypted, thanks

  • Thanks my friend in deep

  • 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