- A.Use the rebuildm utility to rebuild the system database on an existing SQL server computer. Configure all the databases on that server to use the SQL_Latin1_General_CR437_BIN collation. Restore the inventory database to the server.
- B.Restore the inventory database to an existing SQL server computer. Accept the SQL_Latin1_General_CR437_BIN collation for that database.
- C.Install a new named instance of SQL Server 2000 on an existing SQL Server 2000 computer. Configure the named instance to use the SQL_Latin1_General_CR437_BIN collation. Restore the inventory database to the named instance.
- D.Install SQL Server 2000 on a new computer. Configure the new server to use the SQL_Latin1_General_CR437_BIN collation. Restore the inventory database to the new server.
- A.Use the ALTER DATABASE statement to change the collation of the databases on SQL1.
- B.Add SQL2 as remote server.
- C.Add SQL2 as a linked server. Select the Use Remote Collation check box, and do not specify a collation name.
- D.Add SQL2 as a linked server. Select the Use Remote Collation check box, and specify a collation name. Repeat this process once for each database on SQL2.
- A.Compress drive E.
- B.Add a new hard disk to the server. Create a new file on the new hard disk as part of the PRIMARY filegroup.
- C.Add a new hard disk to the server. Create a new file on the new hard disk as part of a new filegroup.
- D.Map a network drive to the server. Create a new data file on the network drive as part of the PRIMARY filegroup.
- E.Map a network drive on the server. Create a new data file on the network drive as part of a new filegroup.
- A.Create a SQL Server Agent job to execute the UPDATE STATISTICS statement, and schedule the job to run weekly.
- B.Select the Auto Update Statistics check box.
- C.Run the database maintenance plan wizard, and accept the default settings.
- D.Rebuild the primary key as a nonclustered primary key.
- E.Clear the Auto Create Statistics check box.
- A.Alter the data type of the description field to varchar(50).
- B.Alter the data type of the Special field to varchar(50).
- C.Alter the data type of the CubicFeet field to float.
- D.In the locations table, create an INSTEAD OF trigger that truncates the description field at 10 characters when the record is updated.
- E.In the locations table, create an INSTEAD OF trigger that truncates the Special field at 10 characters when the record is updated.
- A.Detach the database from the original server by using the sp_detach_db stored procedure. Copy the database and the transaction log files to the new server, and attach them by using the sp_attach_db stored procedure.
- B.Use the DTS export wizard to transfer all database objects from the original server to the new server. Drop the database from the original server.
- C.Run a full backup of the database on the original server. Create a new database named marketing on the new server. Restore the backup in the new marketing database. Drop the database from the original server.
- D.Shut down the original server. Copy the database and the transaction log files to the new server. Use the DISK INIT and DISK REFIT statements to attach the data file to the new server. Drop the database from the original server.
- A.Add triggers to the PartsShipped and the PartsReceived tables that update the InStock field in the Parts table.
- B.Create a user-defined function that calculates current inventory by running aggregate queries on the PartsShipped and PartsReceived tables.
- C.Use a view that creates an InStock field as part of an aggregate query.
- D.Create stored procedures for modifying the PartsShipped and PartsReceived tables that also modify the InStock field in the Parts table. Use these procedures exclusively when modifying data in the PartsShipped and PartsReceived tables.