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

A.T-SQL語(yǔ)言腳本
B.命令行運(yùn)行程序
C.Integration Service包
D.Analysis Service命令


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題SQL Server中下列()語(yǔ)句能將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)

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

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

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

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

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

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’)

5.單項(xiàng)選擇題下面()用來(lái)釋放游標(biāo)。

A.declare
B.open
C.close
D.deallocate