To create a stored procedure in SQL Server encryption must use the WITH ENCRYPTION intruccion after CREATE or ALTER
CREATE PROCEDURE procedurename
/ *
(
@ parameter1 int = 5, @ parameter2 datatype OUTPUT
)
* /
WITH ENCRYPTION AS SELECT * FROM
Table
RETURN
We must be careful because in theory at least, you can not decipher.
0 comments:
Post a Comment