1.
You are mastering the company database, including the SQL Server 2005 database which include a table called Production. Product. The table has more than 50 columnsThe most common queries are listed below Transact-SQL statements. --QUERY 1SELECT [Name], [ProductLine], [ListPrice], [Class], [Style] FROM [Production]. [Product]WHERE [ProductLine] = 'T' QUERY 2SELECT * FROM [Production]. [Product] ORDER BY [Name] When you are minimizing the space required for the indexes. You should select the best indexes to maintain the most common searched to the Production. Product tableWhich is the correct answer?
2.
You are managing a SQL Server 2008 instance for Company.com. There are databases in the server for some applications. You decide to utilize the Resource Governor to cut the result of searches which are run through Microsoft SQL Server Management Studio. The requirements listed below are met: By SQL Server Management Studio, Searches initiated do not excel 40 percent of CPU utilization.By the applications, Searches initiated are permitted to cost 200 percent of CPU utilization when needed. Which is the correct answer?
3.
You are managing a SQL Server 2008 instance which includes a database called Product for Company.com. The Product database owns a table named Products that reserves data about the whole types of products. Users search the Product table which is based on the TestPro column which owns the NULL value for the whole products other than Televisions. There is no index on the TestPro column presently. You should make sure that you could make your query performance higher through the effect on the disk space is minimized. Which is the correct answer?
4.
You are managing a SQL Server 2008 instance for Company.com. Its security policy allows members of a Windows group called Sony\Products to build new links to the SQL Server instance during business hours between 08:00 hours and 21:00 hours. Other users could not connect the database at any time.Transact-SQL statements are listed below:CREATE TABLE Security.RestrictedTester(ProductID int NOT NULL IDENTITY(1,1),GroupTest sysname NOT NULL,RestrictedTesterTimeStart time NOT NULL,RestrictedTesterTimeStop time NOT NULL,CONSTRAINT RestrictedTester _pk PRIMARY KEY CLUSTERED (Id)); INSERT INTO Security.RestrictedTester (GroupTest,RestrictedTesterTimeStart,RestrictedTesterTimeStop)VALUES (' Sony\Products ',CAST('08:00' AS time),CAST('21:00' AS time)); You should make sure that you should run the company security policy which is reserved in the RestrictedTester table. In order to solve the problem, which is the correct answer?
5.
You are managing some SQL Server 2008 instances for Company.com. Not only you should include the prefix usp_ on all instances using all user-defined stored procedures, but also you should make sure that you could not develop stored procedures which do not include this prefix. Which is the correct answer?
6.
You are managing a SQL Server 2008 instance which includes a database called Products for Company.com. There is TableHis table which is partitioned on the ProID column in Products database. The first partition includes integer values between 5 and 20,000. The second partition includes integer values greater than 20,000.You should make sure that you could increase a new partition which includes integer values greater than 40,000.Which is the correct answer?
7.
You are managing a SQL Server 2008 instance for Company.com. You are creating a repository of function information. You should make sure that requirements listed below are met The data collector is utilized to collect function information.One database reserves function information for the whole instances.Function information which is older than 15 days is removed. Administrative effort to operate function data is minimized. Which is the correct answer?
8.
You are managing a SQL Server 2008 which includes an internal application instance for Company.com. The company uses the technology of Analysis Services and Reporting Services. The surface area for the whole deployed components of SQL Server 2008 is set for. Company security policy .You should make sure that you could doas the security policy. In order to solve the problem, which is the correct answer?
9.
You are a database administrator for your company. The company uses a SQL Server 2008 database that includes a table named Inventory. The table contains a column named Price. A company policy states that the value in the Price column cannot be decreased by more than 10 percent in any single database operation. Updates to the Price column are made by various means, including by using ad hoc queries. You need to ensure that this company policy is enforced. What should you do?
10.
You are managing a SQL Server 2008 instance which owns a stored procedure which runs a database maintenance process for Company.com. Not only you should develop a SQL Server Agent job which implements the stored procedure, but also you should make sure that the job is deleted after completion. Which is the correct answer?