SQLServer 中繼資料相關 三

來源:互聯網
上載者:User

  綜合執行個體

  下面給出了一個預存程序,它的作用是自動將當前資料庫的使用者預存程序加密。

DECLARE @sp_name nvarchar(400)
  DECLARE @sp_content nvarchar(2000)
  DECLARE @asbegin int
  declare @now datetime
  select @now = getdate()
  DECLARE sp_cursor CURSOR FOR
  SELECT object_name(id)
  FROM sysobjects
  WHERE xtype = 'P'
  AND type = 'P'
  AND crdate < @now
  AND OBJECTPROPERTY(id, 'IsMSShipped')=0
  OPEN sp_cursor
  FETCH NEXT FROM sp_cursor
  INTO @sp_name
  WHILE @@FETCH_STATUS = 0
  BEGIN
  SELECT @sp_content = text FROM syscomments WHERE id = OBJECT_ID(@sp_name)
  SELECT @asbegin = PATINDEX ( '%AS' + char(13) + '%', @sp_content)
  SELECT @sp_content = SUBSTRING(@sp_content, 1, @asbegin - 1)
  + ' WITH ENCRYPTION AS'
  + SUBSTRING (@sp_content, @asbegin+2, LEN(@sp_content))
  SELECT @sp_name = 'DROP PROCEDURE [' + @sp_name + ']'
  EXEC sp_executesql @sp_name
  EXEC sp_executesql @sp_content
  FETCH NEXT FROM sp_cursor
  INTO @sp_name
  END
  CLOSE sp_cursor
  DEALLOCATE sp_cursor

  該預存程序利用了 sysobjects 和 syscomments 表,並巧妙地修改了原預存程序的 SQL 定義語句,將 AS 修改為了 WITH ENCRYPTION AS,從而達到了加密預存程序的目的。本預存程序在 SQL Server 2000 上通過。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.