SQL Server : Encrypt / Protect stored procedure

后端 未结 2 1965
梦谈多话
梦谈多话 2021-01-28 06:42

I am just wondering any good tools or software that you can recommend me to protect / encrypt my stored procedure that was developed on SQL Server 2008 R2 ?

I read about

相关标签:
2条回答
  • 2021-01-28 07:19

    Can't you use WITH ENCRYPTION? For example

    CREATE PROCEDURE #EncryptSP
    WITH ENCRYPTION
    AS
    SELECT TOP 10 City
    FROM Person.Address
    GO
    

    https://msdn.microsoft.com/en-gb/library/ms187926%28v=sql.105%29.aspx

    0 讨论(0)
  • 2021-01-28 07:35

    It's not free, but you could give SqlShield a try

    SQL Shield is a built-in tool for MSSQL, SQL Express and MSDE servers that offers hacker-proof encryption for triggers, views and procedures

    0 讨论(0)
提交回复
热议问题