sql server 2005中的DDL觸發器

2021-09-05 16:09:03 字數 2898 閱讀 3053

sql server 2005中,新增加了許多新的特性,其中的ddl觸發器是個不錯的選擇,根據資料初步學習如下,現整理之:

在sql server 2000中,只能為針對表發出的 dml 語句(insert、update 和 delete)定義 after 觸發器。sql server 2005 可以就整個伺服器或資料庫的某個範圍為 ddl 事件定義觸發器。可以為單個 ddl 語句(例如,create_table)或者為一組語句(例如,ddl_database_level_events)定義 ddl 觸發器。在該觸發器內部,您可以通過訪問 eventdata() 函式獲得與激發該觸發器的事件有關的資料。該函式返回有關事件的 xml 資料。每個事件的架構都繼承了 server events 基礎架構。

比如,在sql server 2005中,建立乙個叫ddltrtest 的資料庫,並且建立乙個叫mytable的表

和usp_querymytable 的儲存過程,如下所示

drop database [ddltrtest]

go create database ddltrtest

go use [ddltrtest]

go if  exists (select * from sys.objects

where object_id = object_id(n'[dbo].[mytable]')

and type in (n'u'))

drop table [dbo].[mytable]

go create table mytable(id int, name varchar(100))

go insert into mytable select 1,'a'

insert into mytable select 2,'b'

insert into mytable select 3,'c'

insert into mytable select 4,'d'

insert into mytable select 5,'e'

insert into mytable select 6,'f'

go use [ddltrtest]

go if  exists (select * from sys.objects where object_id =

object_id(n'[dbo].[usp_querymytable]')

and type in (n'p', n'pc'))

drop procedure [dbo].[usp_querymytable]

go create proc usp_querymytable

as select * from mytable

go 接下來定義乙個ddl觸發器如下

create trigger stop_ddl_on_table_and_proc

on database

for create_table,drop_table,

alter_table,create_procedure,

alter_procedure,drop_procedure

as select eventdata().value

('(/event_instance/tsqlcommand/commandtext)[1]',

'nvarchar(max)')

print 'you are not allowed to create,alter and drop

any tables and procedures'

rollback;

接下來,我們嘗試如下的操作:

alter table mytable add x int

結果如下,出現錯誤提示

alter table mytable add x int

(1 row(s) affected)

you are not allowed to create,alter and drop any tables and procedures

msg 3609, level 16, state 2, line 1

the transaction ended in the trigger. the batch has been aborted.

再執行drop的操作,同樣觸發警告

drop table mytable

(1 row(s) affected)

you are not allowed to create,alter and drop any tables and procedures

msg 3609, level 16, state 2, line 1

the transaction ended in the trigger. the batch has been aborted.

因為我們的觸發器規定了不能使用create_table,drop_table,

alter_table,create_procedure,

alter_procedure,drop_procedure等操作。     如果我們要關掉這個觸發器,可以這樣做:  disable trigger stop_ddl_on_table_and_proc

on database   當然,我們要對整個伺服器採取策略的話,也是很簡單的,和上面的方法大致相同只不過將on database的引數改為on server,比如   create trigger stop_ddl_on_table_and_proc

on all server

for create_database,alter_database,drop_database

as print 'you are not allowed to create,alter and drop any databases'

rollback;

sql server 2005中的output子句

今天看了下sql server 2005中的output子句,以使您可以從修改語句 insert update delete 中將資料返回到表變數中。帶結果的 dml 的有用方案包括清除和存檔 訊息處理應用程式以及其他方案。這一新的 output 子句的語法為 output into table v...

With在sql server 2005中的用法

with在msdn中的講解,可以參考鏈結 1 2 建立錶值變數型別 3 4create type ty newareagoods as table 5 areaid int notnull,6 goodsid int notnull 7 8 9 創鍵返回今天 的資料 10 根據有 的地區獲取參 11...

sql server 2005中的output子句

今天看了下sql server 2005中的output子句,以使您可以從修改語句 insert update delete 中將資料返回到表變數中。帶結果的 dml 的有用方案包括清除和存檔 訊息處理應用程式以及其他方案。這一新的 output 子句的語法為 output into table v...