- A.Set the database load state for each destination server to No recovery mode.
- B.Set the database load state for each destination server to standby mode.
- C.Enable the allow database to assume primary role option for both destination servers.
- D.Enable the allow database to assume primary role option for one destination server and then disable this option for other destination server.
- E.Disable the allow database to assume primary role option for both destination servers.
- A.Uninstall SQL Server 7.0, and then rerun the SQL Server upgrade wizard.
- B.Run the Microsoft SQL Server-switch application, and then rerun the SQL Server upgrade wizard.
- C.Create a data transformation services package that imports the databases from SQL Server 6.5 to SQL Server 2000, and then execute the package.
- D.Uninstall SQL Server 2000, and then reinstall SQL Server 2000 as the default instance.
- A.Execute the DBCC CHECKDB statement, and then specify the PHYSICAL_ONLY option.
- B.Execute the DBCC CHECKDB statement, and then specify the REPAIR_REBUILD option.
- C.Execute the sp_resetstatus stored procedure.
- D.Restore the suspect database from backups.
- A.Update the database statistics.
- B.Add indexes to the foreign key fields.
- C.Truncate the transaction log.
- D.Run the database maintenance plan wizard.
- E.Drop primary keys from all tables.
- A.Create a non-normalized EzonexamConsolidated table and populate the table with data from the base tables.
- B.The appropriate users should be granted UPDATE permissions on each base table.
- C.To enable updates on the composite tables create an INSTEAD OF trigger on the view.
- D.On each base table add a cascading update trigger.
- AS SELECT FirstName, LastName, Address1, Address2, City, State, Zip, MAX(PurchaseDate) AS LastPurchase
- FROM Customers C
- JOIN Addresses A ON A.AddressID = C.AddressID
- JOIN Purchases P ON P.CustomerID = C.CustomerID WHERE C.CustomerID = @CustomerID
- GROUP BY FirstName, LastName, Address1, Address2, City, State, Zip You want to improve the performance of the procedure by using the least amount of administrative effort. What should you do?
- A.Recompile the stored procedure.
- B.Update the database statistics.
- C.Check the consistency of the database and repair errors.
- D.Create a view and modify the stored procedure to use the view.
- A.Configure SQLAgentMail to use a valid MAPI profile
- B.Configure SQL Mail to use a mailbox that delegates permissions to the operator
- C.Use the net send notification method to send the operator e-mail messages
- D.Create a job that executes the xp_startmail stored procedure Configure the job to run whenever SQL Server 2000 starts