- A.Save the DTS package so that it has an owner password.
- B.Save the DTS package so that it has a user password.
- C.Encrypt the DTS package details in the command line of the dtsrun utility.
- D.Store the DTS package in the Meta. Data Services repository.
- E.Store the DTS package as a Microsoft Visual Basic file.
- A.Enable the Always read properties from UDL file option in the Connection Properties dialog box.
- B.Disable the Always read properties from UDL file option in the Connection Properties dialog box.
- C.Delete the .udl files and store connection details in the registry by using system data source names.
- D.Delete the .udl files, and store connection details in the registry by using user data source names.
- E.Make the .udl files available on a network share.
- A.On SQL2000, enable the multiprotocol net library.
- B.On SQL2000, select the force protocol encryption check box.
- C.On SQL7, select the force protocol encryption check box.
- D.On SQL2000, install a secure sockets layer (SSL) encryption certificate.
- E.On SQL2000 and SQL7, enable multiprotocol encryption.
- A.Create additional nonclustered indexes on the CustomerInformation table.
- B.Rewrite the application so that it uses a user-defined function to return the customer list.
- C.Rewrite the application so that it uses a query with a WHERE clause to search for customer names.
- D.Rewrite the application so that is uses a stored procedure to return the customer list.
- A.Back up the existing objects on the PRIMARY filegroup. Drop them from the database. Re-create them on the SECONDARY filegroup.
- B.Set the file growth on the PRIMARY filegroup to UNLIMITED.
- C.Set the PRIMARY filegroup so that it is read-only.
- D.Set the SECONDARY filegroup as the default filegroup.
- A.Add an ON UPDATE CASCADE constraint to the CustomerID field in the Customers table. Modify the values in the CustomerID field in the Customers table.
- B.Create a duplicate record that has a new CustomerID value. Update the foreign key fields in the invoices, contacts, and quotes tables with the new value.
- C.Disable the FOREIGN KEY constraints. Within a transaction, modify the values in the CustomerID field in the Customers table and all related foreign key values in the invoices, contacts, and quotes tables. Re-enable the FOREIGN KEY constraints after the
- D.Create a Data Transformation Services package. Use the package to transform. the CustomerID value and the values of the related foreign keys in the invoices, contacts, and quotes tables.
- A.Drop the indexes for the customers table before the data load, and then re-create the indexes after the data load is complete.
- B.Remove the TABLOCK option from the BULK INSERT statement.
- C.Add the BATCHSIZE option to the BULK INSERT statement and then set the option equal to 10 percent of the number of rows to be loaded.
- D.Add the ROWS_PER_BATCH option to the BULK INSERT statement and then set the option equal to 10 percent of the number of rows to be loaded.
- A Data Transformation Services (DTS) package transforms the sales records, as they are loaded. The package writes the transformed sales records to the Sales table, which has a column for integer primary key values. The IDENTITY property automatically assi
- After loading this month's sales data, you discover that a portion of the data contains errors. You stop loading data, identify the problem records, and delete those records from the database. You want to reuse the key values that w
- A.Export all records from the Sales table to a temporary table. Truncate the Sales table, and then reload the records from the temporary table.
- B.Export all records from the Sales table to a text file. Drop the Sales table, and then reload the records from the text file.
- C.Use the DBCC CHECKIDENT statement to reseed the Sales table's IDENTITY property.
- D.Set the Sales table's IDENTITY_INSERT property to ON. Add new sales records that have the desired key values.
- A.ALTER TABLE [dbo].[StorageLocations] ALTER COLUMN [UnitsStored] [int] NOT NULL
- B.ALTER TABLE [dbo].[StorageLocations] [LocationDescription] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
- C.ALTER TABLE [dbo].[StorageLocations] ALTER COLUMN [UnitsStored] [smallint] NOT NULL
- D.ALTER TABLE [dbo].[StorageLocations] [LocationDescription] [nvarchar] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL