實(shí)驗(yàn)七 觸發(fā)器_第1頁
實(shí)驗(yàn)七 觸發(fā)器_第2頁
實(shí)驗(yàn)七 觸發(fā)器_第3頁
實(shí)驗(yàn)七 觸發(fā)器_第4頁
實(shí)驗(yàn)七 觸發(fā)器_第5頁
已閱讀5頁,還剩13頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、實(shí)驗(yàn)七 觸發(fā)器一、實(shí)驗(yàn)?zāi)康模?)理解觸發(fā)器的用途、類型和工作原理(2)掌握利用T-SQL語句創(chuàng)建和維護(hù)觸發(fā)器的方法(3)掌握利用企業(yè)管理器創(chuàng)建、維護(hù)觸發(fā)器的方法二、實(shí)驗(yàn)內(nèi)容1.創(chuàng)建after觸發(fā)器(1)創(chuàng)建一個(gè)在插入時(shí)觸發(fā)的觸發(fā)器sc_insert,當(dāng)向sc表插入數(shù)據(jù)時(shí),須確保插入的學(xué)號(hào)已在Student表中存在,并且還須確保插入的課程號(hào)在Course表中存在;若不存在,則給出相應(yīng)的提示信息,并取消插入操作,提示信息要求指明插入信息是學(xué)號(hào)不滿足條件還是課程號(hào)不滿足條件(注:Student表與sc表的外鍵約束要先取消)。create trigger sc_inserton scafter ins

2、ertasif not exists(select * from student,inserted where student.sno=inserted.sno)beginprint 插入信息的學(xué)號(hào)不在學(xué)生表中!if not exists(select * from course,inserted where o=o)print 插入信息的課程號(hào)不在課程表中!rollback endelsebegin if not exists(select * from course,inserted where o=o)beg

3、inprint 插入信息的課程號(hào)不在課程表中!rollbackendend執(zhí)行:、insert into SCvalues(,001,78)刪除外鍵約束:alter table SCdrop constraint FK_SC_Sno_182C9B23、insert into SCvalues(,001,78)、insert into SCvalues(,006,78)(2)為Course表創(chuàng)建一個(gè)觸發(fā)器Course_del,當(dāng)刪除了Course表中的一條課程信息時(shí),同時(shí)將表sc表中相應(yīng)的學(xué)生選課記錄刪除掉。create trigger course_delon courseafter dele

4、teas if exists(select * from sc,deleted where o=o) begin delete from scwhere o in(select cno from deleted) enddelete from Coursewhere Cno=003select * from SC(3)在Course表中添加一個(gè)平均成績(jī)avg_Grade字段(記錄每門課程的平均成績(jī)),創(chuàng)建一個(gè)觸發(fā)器Grade_modify,當(dāng)SC表中的某學(xué)生的成績(jī)發(fā)生變化時(shí),則Course表中的平均成績(jī)也能及時(shí)相應(yīng)的發(fā)生改變。alter table Co

5、urseadd avg_Grade smallintupdate Courseset avg_Grade=(select AVG(Grade) from SC where SC.Cno=Course.Cno)select * from Coursecreate trigger Grade_modifyon scafter updateasif update(grade)beginupdate courseset avg_grade=(select avg(grade) from sc where o=o group by cno)endupdate SCset Gr

6、ade=90where Sno= and Cno=001(4)測(cè)試上述三個(gè)觸發(fā)器。測(cè)試過程在(1)、(2)、(3)中均給出2.創(chuàng)建instead of 觸發(fā)器(1)創(chuàng)建一視圖Student_view,包含學(xué)號(hào)、姓名、課程號(hào)、課程名、成績(jī)等屬性,在Student_view上創(chuàng)建一個(gè)觸發(fā)器Grade_moidfy,當(dāng)對(duì)Student_view中的學(xué)生的成績(jī)進(jìn)行修改時(shí),實(shí)際修改的是sc中的相應(yīng)記錄。create view Student_viewasselect s.Sno,Sname,c.Cno,Cname,Gradefrom Student s,Course c,SCwhere s.Sno=SC

7、.Sno and c.Cno=SC.Cnoselect * from Student_viewcreate trigger Grade_moidfyon Student_viewinstead of updateasif UPDATE(Grade)beginupdate SC set Grade=(select Grade from inserted) whereSno=(select Sno from inserted) andCno=(select Cno from inserted)endupdate Student_viewset Grade=40where Sno= and Cno=

8、002select * from Student_viewselect * from SC(2)在SC表中插入一個(gè)getcredit字段(記錄某學(xué)生,所選課程所獲學(xué)分的情況),創(chuàng)建一個(gè)觸發(fā)器ins_credit,當(dāng)更改(注:含插入時(shí))SC表中的學(xué)生成績(jī)時(shí),如果新成績(jī)大于等于60分,則該生可獲得這門課的學(xué)分,且該學(xué)分須與Course表中的值一致;如果新成績(jī)小于60分,則該生未能獲得學(xué)分,修改值為0。 alter table SCadd getcredit smallintselect * from SCupdate SCset getcredit=(select credit from Cour

9、sewhere SC.Cno=Course.Cno)where Grade=60update SCset getcredit=0where Grade=60)begindelete from SC where sno=s_no and cno=c_noinsert into SC values(s_no,c_no,new_grade,cred)endelsebegindelete from SC where sno=s_no and cno=c_noinsert into SC values(s_no,c_no,new_grade,0)endendinsert into SC(sno,cno,

10、grade) values(,002,85)(3)測(cè)試上述兩個(gè)觸發(fā)器。測(cè)試結(jié)果在(1)、(2)中均已給出3. 使用T-SQL語句管理和維護(hù)(1)用系統(tǒng)存儲(chǔ)過程sp_helptrigger查看觸發(fā)器Grade_modify的相關(guān)信息sp_helptrigger Student_view(2)使用系統(tǒng)存儲(chǔ)過程sp_helptext查看觸發(fā)器Grade_modify中的定義內(nèi)容。sp_helptext Grade_moidfy(3) 使用select語句查看觸發(fā)器Grade_modify的定義內(nèi)容。select o.id,c.textfrom sysobjects o inner join sysc

11、omments con o.id=c.idwhere o.type=TR and =Grade_modify(4)用系統(tǒng)存儲(chǔ)過程sp_depends查看觸發(fā)器Grade_modify的相關(guān)性。sp_depends Grade_modify(5)將sc_insert觸發(fā)器改為instead of 觸發(fā)器,實(shí)現(xiàn)的功能不變。drop trigger sc_insertcreate trigger sc_inserton scinstead of insertasif not exists(select * from student,inserted where student.sno=i

12、nserted.sno)beginprint 插入信息的學(xué)號(hào)不在學(xué)生表中!if not exists(select * from course,inserted where o=o)print 插入信息的課程號(hào)不在課程表中!rollback endelsebegin if not exists(select * from course,inserted where o=o)beginprint 插入信息的課程號(hào)不在課程表中!rollbackendendinsert into SCvalues(,001,78,6)(

13、6)將觸發(fā)器sc_insert刪除。drop trigger sc_insert4.使用SQL Server Management Studio管理存儲(chǔ)過程(1)在SQL Server Management Studio中重新創(chuàng)建剛刪除的觸發(fā)器sc_insert選中SC表,展開右擊“觸發(fā)器”新建觸發(fā)器出現(xiàn)如下界面:編寫余下的SQL語句:CREATE TRIGGER sc_insert ON SC INSTEAD OF INSERTAS BEGINif not exists(select * from student,inserted where student.sno=inserted.sno)beginprint 插入信息的學(xué)號(hào)不在學(xué)生表中!if not exists(select * from course,inserted where o=o)print 插入信息的課程號(hào)不在課程表中!rollback endelsebegi

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論