91. You are a database developer for a consulting company. You are creating a database named Reporting.
Customer names and IDs from two other databases, named Training and consulting, must be loaded into the Reporting database. You create a table named Customers in the Reporting database.
The script that was used to create this table is shown in the Script for Customers Table exhibit here:
The employee table will often be joined with the Salary table on the EmployeeID column.
Individual records in the Employee table will be selected by social security number (SSN)
A list of employees will be created. The list will be produced in alphabetical order by last name, and then followed by first name.
You need to design the indexes for the tables while optimizing the performance of the indexes.
Which three scripts should you use? (Each correct answer presents part of the solution. Choose three)
A. CREATE CLUSTERED INDEX [IX_EmployeeName] ON [dbo].[Employee]([LastName],[FirstName])
B. CREATE INDEX [IX_EmployeeFirstName] ON [dbo].[Employee] ([First Name])
CREATE INDEX [IX_EmployeeLastName] ON [dbo].[Employee] ([Last Name])
C. CREATE UNIQUE INDEX [IX_EmployeeEmployeeID] ON [dbo].[Employee] ([EmployeeID])
D. CREATE UNIQUE INDEX [IX_EmployeeSSN] ON [dbo].[Employee] ([SSN])
E. CREATE CLUSTERED INDEX [IX_EmployeeEmployeeID] ON [dbo].[Employee] ([EmployeeID])
F. CREATE CLUSTERED INDEX [IX_EmployeeESSN] ON [dbo].[Employee] ([SSN])
Ans:A,C,D
97. You are a database developer for a large electric company. The company is divided into many departments, and each employee of the company is assigned to a department. You create a table named Employee that contains information about all employees, including the department to which they belong.
The script that was used to create the Employee table is shown in this exhibit:
Each department manager should be able to view only the information in the Employee table that pertains to his or her department.
What should you do?
A. Use GRANT, REVOKE, and DENY statements to assign permissions to each department manager.
B. Add the database login of each department manager to the db_datareader fixed database role.
C. Build tables and views that enforce row-level security on the Employee table.
D. USE SQL Server Enterprise Manager to assign permissions on the Employee table.
Ans:C
98. You are a database developer for your company's Human Resources database. This database includes a table named Employee that contains confidential ID numbers and salaries. The table also includes non-confidential information, such as employee names and addresses.
You need to make all the non-confidential information in the Employee table available in XML format to an external application. The external application should be able to specify the exact format of the XML data.
You also need to hide the existence of the confidential information from the external application.
What should you do?
A. Create a stored procedure that returns the non-confidential information from the Employee table formatted as XML.
B. Create a user-defined function that returns the non-confidential information from the Employee table in a rowset that is formatted as XML.
C. Create a view that includes only the non-confidential information from the Employee table. Give the external application permission to submit queries against the view.
D. Set column-level permissions on the Employee table to prevent the external application from viewing the confidential columns. Give the external application permissions to submit queries against the table.
Ans:C
99. You are a database developer for Tailspin Toys. You have two SQL Server 2000 computers named CORP1 and CORP2. Both of these computers use SQL Server authentication.
CORP2 stores data that has been archived from CORP1.
At the end of each month, data is removed from CORP1 and transferred to CORP2.
You are designing quarterly reports that will include data from both CORP1 and CORP2. You want the distributed queries to execute as quickly as possible.
Which three actions should you take? (Each correct answer presents part of the solution. Choose Three)
A. Create a stored procedure that will use the OPENROWSET statement to retrieve the data.
B. Create a stored procedure that will use the fully qualified table name on CORP2 to retrieve the data.
C. Create a script that uses the OPENQUERY statement to retrieve the data.
D. On CORP1, execute the sp_addlinkedserver system stored procedure.
E. On CORP1, execute the sp_addlinkedsrvlogin system stored procedure.
F. On CORP2, execute the sp_serveroption system stored procedure and set the collation compatible to ON.
Ans:B,D,E
100. You are a database developer for an IT consulting company. You are designing a database to record information about potential consultants. You create a table named CandidateSkills for the database.