单项选择题
You discover that the ms db database on a SQL Server 2005 computer is corrupt and must be restored. Databases are backed up daily. The database backup files are written to a network share, but the file names do not clearly indicate which databases are in each file. You need to locate the correct backup file as quickly as possible. The first file in the list isnamed DB Backup.bak.
Which Transact-SQL statement should you use?()
A.RESTORE LABELONLYFROM DISK = N\\Server1\Backup\DB Backup.bak
B.RESTORE HEADERONLYFROM DISK = N\\Server1\Backup\DB Backup.bak
C.RESTORE VERIFYONLYFROM DISK = N\\Server1\Backup\DB Backup.bak
D.RESTORE DATABASE MSDBFROM DISK =N\\Server1\Backup\DB Backup.bak
相关考题
-
单项选择题
You are responsible for implementing maintenance jobs on a SQL Server 2005 database server. Certain jobs run every Sunday and other jobs run at the beginning of every month. You need to schedule the jobs in the way that uses the least amount of administrative effort. What should you do?()
A.Create a job schedule that runs every Sunday.Assign weekly tasks to this schedule.Create a second schedule that runs on the first day of every month. Assign monthly tasks to this schedule.
B.Create a job for each task that runs once a day. Use a Transact-SQL statement to check the date and day of the week. If the day is either a Sunday or the first day of the month, execute the code.
C.Create a job schedule that runs once a day. Assign jobs to this job schedule. If the day is either a Sunday or the first day of the month, execute the jobs.
D.Create a job for each task that runs once a week on Sunday. Add a second job schedule that runs the job on the first of the month -
多项选择题
TestKing.com uses SQL Server 2005. Users report that report execution is slow. You investigate and discover that some queries do not use optimal execution plans. You also notice that some optimizer statistics are missing and others are out of date. You need to correct the problem so that reports execute more quickly. Which two Transact-SQL statements should you use?()
A.DBCC CHECKTABLE
B.ALTER INDEX REORGANIZE
C.UPDATE STATISTICS
D.CREATE STATISTICS
E.DBCC SHOW STATISTICS
F.DBCC UPDATEUSAGE -
单项选择题
TestKing.com has multiple servers in a distributed environment. You work with two SQL Server 2005 computers named SQL1 and SQL2. Each server uses SQL Server Authentication and they use different logins.You need to write a distributed query that joins the data on SQL1 with the data on SQL2. What should you do?()
A.Ensure that both SQL1 and SQL2 use the same login name as the security context for each server.
B.Configure SQL2 as a remote server. Write the query on SQL1.
C.Configure SQL2 as a linked server to impersonate the remote login.
D.Configure SQL2 as a distributed server. Use pass-through authentication.
