微軟認證考試70-432練習試題9

字號:

為大家收集整理了《微軟認證考試70-432練習試題9》供大家參考,希望對大家有所幫助?。?!
    QUESTION 41 You work in a company which uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a single Database Mail profile. Reports are sent to all the company employees by using the Mail profile. During office hours, a large volume of reports are sent by the sp_send_dbmail stored procedure. Now you notice that it takes a long time for the reports to be sent to the company manager. As the technical support, you have to speed up the delivery. So what action should you perform to achieve this goal? A.Another SMTP account should be added to the existing Database Mail profile B.When you send the reports to the manager, you should use the @importance = high parameter. C.You should change the Account Retry Attempts option of the Database Mail system properties D.You should configure a new Database Mail profile. The new one will be used for sending the reports to the manager. Answer: D QUESTION 42 You work in a company which uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a database named DB1 in the instance. You put forward a database maintenance plan. The maintenance plan rebuilds indexes, checks database integrity, writes a report to a text file. Now the company requires that when the maintenance plan executes abnormally, the operators can be notified by an e-mail message. You've been assigned this task. So you have to make modifications on the SQL Server instance. What should you do? A.For the SQL Server Agent, you should enable a fail-safe operator B.You should modify the database maintenance plan, making it send an e-mail to the appropriate operators C.You should modify the database maintenance plan, making it include a Notify Operator task that e-mails the appropriate operators. D.You should modify the SQL Server Agent job. The job executes the database maintenance plan to notify the appropriate operators. Answer: D QUESTION 43 You work in a company which uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a database named DB1 in the instance. You have set the recovery model of DB1 to Full. You deploy a new process. The process modifies 10,000 records from the Accounts table at 18:00 every day. Any modification made by the process to the data must be reverted and database keeps online. You must make sure of this. So which strategy should you implement? A.You should implement Differential backup B.You should implement Database snapshots C.You should implement Primary filegroup backup D.You should implement Transaction log backup Answer: B QUESTION 44 You work in a company which uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a database named DB1 in the instance. There is a database named DB1 in the instance. The backup strategy for DB1 has the following requirements: every day at 9:00 full database backup to a file named cash.bak is performed; at 9:15 a transaction log backup to a file named cash_HHMM.trn is performed every 15 minutes. DB1 is being used in single-user mode. Today a user reports that a query deleted some data by accident, the query was executed at 9: 25. Since the deleted data is quite important, the data has to be restored to its original state. You must achieve this goal. So what action should you perform to achieve this goal? A.RESTORE DATABASE Cash FROM DISK = 't:\backups\cash.bak' WITH NORECOVERY;RESTORE LOG Cash FROM 't:\backups\cash_0930.trn' WITH RECOVERY, SAT = 'Mar 17, 2008 9:25AM'; B.RESTORE DATABASE Cash FROM DISK = 't:\backups\cash.bak';RESTORE LOG Cash FROM 't:\backups\cash_0915.trn' WITH NORECOVERY;RESTORE LOG Cash FROM 't:\backups\cash_0930.trn' WITH RECOVERY, SAT = 'Mar 17, 2008 9:25AM'; C.RESTORE DATABASE Cash FROM DISK = 't:\backups\cash.bak';RESTORE LOG Cash FROM 't:\backups\cash_0915.trn' WITH NORECOVERY;RESTORE LOG Cash FROM 't:\backups\cash_0930.trn' WITH RECOVERY; D.RESTORE DATABASE Cash FROM DISK = 't:\backups\cash.bak' WITH NORECOVERY;RESTORE LOG Cash FROM 't:\backups\cash_0915.trn' WITH NORECOVERY;RESTORE LOG Cash FROM 't:\backups\cash_0930.trn' WITH RECOVERY, SAT = 'Mar 17, 2008 9:25AM'; Answer: D QUESTION 45 You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a database named DB1 in the instance. At present about 90 GB of data is stored in DB1. You made some rough calculations that every day about 1 GB of data is modified or inserted. You set the recovery model of DB1 to Simple. According to the company requirements, during business hours, data loss of more than 120 minutes worth of transactions is unacceptable. You have to choose a backup strategy which must comply with the following two requirements: Using as little disk space as possible Complying with the company requirements. So what action should you perform to achieve this goal? A.A full database backup should be performed once daily. During business hour, a transaction log backup should be performed every two hours. B.A full database backup should be performed once daily C.A full database backup should be performed once daily. During business hours, a differential backup should be performed every two hours D.Perform a full database backup should be performed once every week. A differential backup should be performed once daily. During business hours a transaction log backup should be performed every two hours. Answer: C