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

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


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題SQL Server中下列()語句能將employee表中的state字段擴充為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.單項選擇題SQL Server中要刪除表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.單項選擇題在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)錯誤

5.單項選擇題在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’)