多項(xiàng)選擇題SQL Server Agent是SQL Server 2005的內(nèi)置服務(wù)組件,利用它可以實(shí)現(xiàn)自動(dòng)執(zhí)行數(shù)據(jù)庫的管理工作,從而減輕數(shù)據(jù)庫管理員的工作量。可以由SQL Server Agent自動(dòng)執(zhí)行的操作稱為作業(yè),新建一個(gè)作業(yè)計(jì)劃時(shí)需要配置()。

A.作業(yè)計(jì)劃運(yùn)行頻率
B.作業(yè)計(jì)劃每天運(yùn)行頻率
C.作業(yè)計(jì)劃持續(xù)時(shí)間
D.作業(yè)計(jì)劃執(zhí)行身份


您可能感興趣的試卷

你可能感興趣的試題

2.單項(xiàng)選擇題SQL Server中下列()語句能將employee表中的state字段擴(kuò)充為varchar(100)。

A.alter table employee alter column state varchar(100)
B.alter table employee column state varchar(100)
C.alter table employee alter column of state varchar(100)
D.alter table employee add column state varchar(100)

3.單項(xiàng)選擇題SQL Server中要?jiǎng)h除表student字段sex(值為NULL,0,1)中的值為NULL的數(shù)據(jù),以下語句正確的是()。

A.delete student where sex in(NULL)
B.delete student where sex=NULL
C.delete student where sex is NULL
D.delete student where is NULL(sex,O)is NULL

4.單項(xiàng)選擇題在SQL Sever 2005中,假設(shè)表stu中包含主鍵列AP列,更新語句是Update stuset AP=200 where AP=300,執(zhí)行結(jié)果不可能是()。

A.更新了多行數(shù)據(jù)
B.沒有數(shù)據(jù)更新
C.更新了一行數(shù)據(jù)
D.出現(xiàn)錯(cuò)誤

5.單項(xiàng)選擇題在SQL Server 2005中,學(xué)生表student中包含以下字段:學(xué)生編號sid(主鍵,標(biāo)識列)和學(xué)生姓名sname,現(xiàn)在向該表中插入數(shù)據(jù),以下語句正確的是()。

A.Insert into student(sid,sname)values(1,’Jack’)
B.Insert into student(sid,sname)values(1,"jack")
C.Insert into student values(1,"jack")
D.Insert into student values(’jack’)