資源描述:
《實(shí)驗(yàn)四:用戶權(quán)限管理實(shí)驗(yàn)》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、實(shí)驗(yàn)四:用戶權(quán)限管理實(shí)驗(yàn)一、實(shí)驗(yàn)?zāi)康恼莆誗QLServer中有關(guān)用戶、角色及操作權(quán)限的設(shè)置方法。二、實(shí)驗(yàn)內(nèi)容1.用超級用戶登錄學(xué)生數(shù)據(jù)庫student。2.建立兩個新用戶:用戶名stu1,密碼stu1(登錄名login1);用戶名stu2,密碼stu2(登錄名login2)和用戶名stu3,密碼stu3(登錄名login3)。3.授予stu1對SC具有select和insert權(quán)限,授予stu1對student具有select,update,insert和delete權(quán)限,授予stu1對Course具有select,update,inse
2、rt和delete權(quán)限。4.授予stu2對SC具有select權(quán)限,授予stu2對student具有select權(quán)限,授予stu2對Course具有select權(quán)限;授予stu2對Course具有更新屬性Ccredit的權(quán)限。5.測試授權(quán)◆以用戶Stu1登錄學(xué)生數(shù)據(jù)庫:(1)查詢SC、student和Course表中的所有數(shù)據(jù);(2)分別向SC、student和Course表中插入一組合法數(shù)據(jù);(3)分別對SC、student和Course表更改一個元組;(4)分別對SC、student和Course表刪除一個元組。觀察運(yùn)行結(jié)果并分析原因
3、?!粢杂脩鬝tu2登錄學(xué)生數(shù)據(jù)庫:(1)分別向SC、student和Course表中插入一組合法數(shù)據(jù);(2)更新Course表中課程號為’1’的課程的名稱為’人工智能’;(3)更新Course表中課程號為’1’的課程的學(xué)分為3。觀察運(yùn)行結(jié)果并分析原因?!粢杂脩鬝tu1登錄學(xué)生數(shù)據(jù)庫:(1)收回stu1對SC表的select權(quán)限,對student表的update和insert權(quán)限,對Course表的delete權(quán)限;(2)查詢SC、student和Course表中的數(shù)據(jù),觀察運(yùn)行結(jié)果;(3)分別向SC、student和Course表中插入一
4、組合法數(shù)據(jù),觀察運(yùn)行結(jié)果;(4)分別對SC、student和Course表更改一個元組,觀察運(yùn)行結(jié)果;(5)分別對SC、student和Course表刪除一個元組,觀察運(yùn)行結(jié)果。思考Course是否具有delete權(quán)限執(zhí)行效果有何不同?6.創(chuàng)建數(shù)據(jù)庫角色Myrole,設(shè)置訪問student表的select和insert權(quán)限,并添加用戶成員stu3。以stu3登錄查看驗(yàn)證。7.使用SQL命令完成:刪除登錄名login1、login2和login3;刪除用戶名stu1、stu2和stu3;刪除角色Myrole。三、實(shí)驗(yàn)學(xué)時2學(xué)時四、實(shí)驗(yàn)設(shè)備與
5、環(huán)境Windows2003平臺+SQLServer2008系統(tǒng)--2.建立兩個新用戶:用戶名stu1,密碼stu1(登錄名login1);用戶名stu2,密碼stu2(登錄名login2)和用戶名stu3,密碼stu3(登錄名login3)createloginlogin1withpassword='stu1';createUserstu1forloginlogin1;createloginlogin2withpassword='stu2';createUserstu2forloginlogin2;createloginlogin3wit
6、hpassword='stu3';createUserstu3forloginlogin3;--3.授予stu1對SC具有select和insert權(quán)限,授予stu1對student具有select,update,insert和delete權(quán)限,授予stu1對Course具有select,update,insert和delete權(quán)限grantselect,insertonSCtostu1;grantselect,update,insert,deleteonstudenttostu1;grantselect,update,insert,de
7、leteoncoursetostu1;--4.授予stu2對SC具有select權(quán)限,授予stu2對student具有select權(quán)限,授予stu2對Course具有select權(quán)限;授予stu2對Course具有更新屬性Ccredit的權(quán)限grantselectonSCtostu2;grantselectonstudenttostu2;grantselectoncoursetostu2;grantupdate(Ccredit)oncoursetostu2;--5.測試授權(quán)--◆以用戶Stu1登錄學(xué)生數(shù)據(jù)庫:--(1)查詢SC、stude
8、nt和Course表中的所有數(shù)據(jù);select*fromSC;select*fromstudent;select*fromcourse;--(2)分別向SC、student和Course表中插