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

A.T-SQL語言腳本
B.命令行運行程序
C.Integration Service包
D.Analysis Service命令


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題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)

2.單項選擇題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

3.單項選擇題在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)錯誤

4.單項選擇題在SQL Server 2005中,學生表student中包含以下字段:學生編號sid(主鍵,標識列)和學生姓名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’)

5.單項選擇題下面()用來釋放游標。

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