- A.Configure the IIS virtual directory to allow URL queries.
- B.Configure the IIS virtual directory to allow template queries.
- C.Create a new Windows user account. Create a corresponding Windows Authenticated login on the SQL Server computer. Configure the IIS virtual directory to always use this login when connecting to the SQL Server computer.
- D.Create a Windows Authenticated login on the SQL Server computer for the IIS Internet Guest Account. Configure the IIS virtual directory to always use the Internet Guest Account when connecting to the SQL Server computer.
- E.Create a Windows Authenticated login for each company partner on the SQL Server computer. Configure the IIS virtual directory to use Windows Integrated Authentication when connecting to the SQL Server computer.
- A.Place the transaction log on physical disk 0 and the data file on the RAID-5 disk array.
- B.Place the transaction log on the RAID-5 disk array and the data file on physical disk 0.
- C.Place the transaction log and the data file on physical disk 0.
- D.Place the transaction log and the data file on the RAID-5 disk array.
- A.Use a Bulk Insert Task to read the data into a temporary table. Use an Execute SQL task to import the appropriate data into the destination table.
- B.Create and edit a format file to select the columns you want to import. Use a Bulk Insert Task, and then specify the format file to import the appropriate data into the destination table.
- C.Use a transform. data task to import the data. Use Microsoft ActiveX transformation scripts to write the appropriate data to the appropriate columns in the destination table.
- D.Create and edit a format file to select the columns you want to import. Use a transform. data task, and then specify the format file to import the appropriate data into the destination table.
- A.Create a Data Transformation Services (DTS) package to remove bids that have a closing data older than one year.
- B.Create a trigger to delete any bids that have a closing data older than one year. Bind the trigger to the bids table for all INSERT, UPDATE, and DELETE events.
- C.Create a stored procedure to delete any bids that have a closing data order than one year. Use SQL server agent to schedule the stored procedure to run every night.
- D.Create a view that contains a WHERE clause to exclude bids that have a closing date older than one year.
- A.Re-create the Notes table on the SECONDARY filegroup.
- B.Re-create the nonclustered indexes on the SECONDARY filegroup.
- C.Re-create the Patients and Doctors tables and their indexes on the SECONDARY filegroup.
- D.Re-create the Cases and Notes tables and their indexes on the SECONDARY filegroup.
- 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 those calculations that calculates current inventory by running aggregate queries on the PartsShipped and PartsReceived tables.
- C.Use a view that creates an InStock as a part of an aggregate query.
- D.Create stored procedures for modifying the PartsReceived and the PartsShipped tables that also modify the InStock fielding the parts table. Use these procedures exclusively when modifying data in the PartsReceived and the PartsShipped tables.
- A.Create a filegroup named LOOKUP. Move the lookup tables to this filegroup. Select the read only check box for the filegroup.
- B.Create a database role named datamodifier. Grant SELECT permissions to the datamodifier role. Add all users to the role.
- C.Deny INSERT, UPDATE, and DELETE permissions for all users. Create stored procedures that modify data in all tables except lookup tables. Require users to modify data through these stored procedures.
- D.Create a view of the lookup tables. Use the view to allow users access to the lookup tables.