Quantcast
Channel: SQLServerCentral » SQL Server 2012 » SQL Server 2012 - T-SQL » Latest topics
Viewing all articles
Browse latest Browse all 4901

Encrypt Stored Procedure

$
0
0
I would like to encrypt SP, but I do not know how security different between 1 general procedure with "WITH ENCRYPTION" : display on Object Explorer windows2 temp procedure with "WITH ENCRYPTION" : NOT display3 temp procedure without "WITH ENCRYPTION" : NOT display[code="plain"][b]CREATE PROCEDURE EncryptSPWITH ENCRYPTION[/b]ASBEGIN ... Statement ...END[/code][code="plain"][b]CREATE PROCEDURE #EncryptSPWITH ENCRYPTION[/b]ASBEGIN ... Statement ...END[/code][code="plain"][b]CREATE PROCEDURE #EncryptSP[/b]ASBEGIN ... Statement ...END[/code][u]So, I have a question that [/u]1. Is it enough to encrypt with "WITH ENCRYPTION"?2. Does the temp procedure both encrypt and not encrypt, can decrypt by 3rd party tools?

Viewing all articles
Browse latest Browse all 4901

Trending Articles