要隐藏存储过程 [英] Want to Hide the stored Procedure

查看:50
本文介绍了要隐藏存储过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友们,

如何在sql Server 2005中隐藏存储过程.

Hi friends,

How to hide the stored procedures in sql Server 2005.

推荐答案

您可以对存储过程的文本进行加密(如果您要这样做的话).
You can encrypt the text of the stored procedure, if that is what you mean.
CREATE PROCEDURE my_procedure
    WITH ENCRYPTION
    AS
    BEGIN
      SELECT *
      FROM my_table
    END


加密并非坚不可摧,但至少是第一道防线.
来自此处 [隐藏SQL Server代码的选项 [


The encryption is not unbreakable, but at least it is a first line of defence.
From here[^]

Options for hiding SQL Server code[^]


这篇关于要隐藏存储过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆