日期:2014-05-18 浏览次数:20564 次
declare @name varchar(50) declare ap scroll cursor for select name from sysobjects where xtype in ( 'P', -- 存储过程 'FN', -- 函数 'V' -- 视图 ) open ap fetch first from ap into @name while(@@FETCH_STATUS <> -1) begin -- 单个加密代码 fetch next from ap into @name end close ap deallocate ap