- A.Use the bcp utility to export data from each table to a separate text file. Use format files to select the appropriate columns. Merge the data from each text file into a single text file.
- B.Create a view that joins data from all three tables include only the columns you want to appear in the text file. Use the bcp utility to export data from the view.
- C.Create a SELECT query that joins the data from the appropriate columns in the three tables. Add an INTO clause to the query to create a local temporary table. Use the bcp utility to export data from the local temporary table to a text file.
- D.Create a SELECT query that joins the data from the appropriate columns in the three tables. Add an INTO clause to the query to create a global temporary table. Use the bcp utility to export data from the global temporary table to a text file.
- A.Create a new DBCC SHRINKFILE job to shrink the inventory_data file. Schedule the new job to run at the same time as the DBCC SHRINKDATABASE job.
- B.Modify the DBCC SHRINKDATABASE job so that it uses DBCC SHRINKFILE statement to shrink each file individually.
- C.Increase the time between the data integrity checks and the differential backup.
- D.Increase the time between the differential backup and the DBCC SHRINKDATABASE job.
- A.Create a parameterised stored procedure to retrieve the data.
- B.Create a denormalized table that is maintained by triggers.
- C.Use ad hoc queries to retrieve the data.
- D.Create a nonclustered index on the primary key of each table.
- A.Rerun the SQL Server Setup and specify the SQL_Latin1_General_CP437_BIN collation.
- B.Run the rebuildm utility and specify the SQL_Latin1_General_CP437_BIN collation.
- C.Use the ALTER DATABASE statement to specify the SQL_Latin1_General_CP437_BIN collation for the Financials database.
- D.Use the ALTER TABLE statement to specify the SQL_Latin1_General_CP437_BIN collation for each table in the Financials database.
- A.Enable the torn page detection database option for each database.
- B.Disable write caching on all disk controllers.
- C.Ensure that write caching disk controllers have battery backups.
- D.Create a database maintenance plan to check database integrity and make repairs each night.
- A.Ensure that the SQLServerAgent service is running under a user account that has database owner access to the msdb database
- B.Delete the first and last steps in the job
- C.Configure the job to back up the msdb database to a temporary file. Send the file to the administrator in an e-mail message
- D.Insert a new job step before the first step. Configure the new step to terminate all processes that use the msdb database
- A.Select the DTS packages log package execution to SQL server check box. Create a SQL server event alert to notify you if the package fails.
- B.Select the DTS packages write completion status to event log check box. Create a SQL server event alert to notify you if the package fails.
- C.Configure the DTS package to include an on failure precedence constraint and a send mail task. Configure the send mail task to notify you if the package fails.
- D.Configure the DTS package to include an on failure precedence constraint and a send mail task. Configure the execute process task to execute a not send command that will notify you if the package fails.