Test4pass 70-451 exam dumps questions answers

Page 1

Test4pass

Expert

In

IT

Certification

Exams

Exam

:

Microsoft 70-451

Title

:

PRO:MS SQL Serv 2008, Design & Optimizing DB Admin Solution

Version :

Demo

http://www.test4pass.com Leading the way in IT Certification Exams


Test4pass

Expert

In

IT

Certification

Exams

Top 3 Customers in Test4passs - Best IT certifications Team

HOT Certifications On Test4pass Cisco Certifications CCNA CCDA CCNP

CCDP

CCVP

CCSP

CCIP

CCIE

CCDE

Data Center

Sales Expert

Microsoft Certifications MCP

MCSE

MCSE2003 Security

MCITP MCTS MCSE2003 MCSE2003 Messaging

MCPD

MCSD.NET

MCDST

TS Exchange Server2007

Microsoft Business Solutions

IBM Certifications Certified Administrator DB2

Certified Systems Expert

Certified Advanced Technical Expert

Lotus Certification

Solutions Expert System Administator

Certified Advanced System Administrator

WebSphere Cognos 8 BI

Certified Associate Developer Tivoli Software

CompTIA Certifications A+ Server+

CDIA+

PDI+

CTT+

e-Biz+

Convergence+

CompTIA HTI+ i-NET+ Linux+

Network+ Project+

RFID+

Security+


Test4pass

Expert

In

IT

Certification

Exams

1. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You use SQL Server 2008 to create a solution. You intend to import data from an external source into a table. You must make sure that the tasks below are achieved: The rows that fail the foreign key constraints during import are inserted into a separate table. Even if the import encounters rows that fail foreign key constraints, it is successfully completed. So what should you do? A. An AFTER trigger has to be used B. CHECK constraints have to be used C. An INSTEAD OF trigger has to be used D. During the import process disable the foreign keys. Answer: C

2. You work in an International company named TAKEEEN. And you're in charge of the database of your company. There is a SQL Server 2008 instance which hosts a third-party database. A database application is developed for the instance. You have no permissions to modify the database schema. The database contains two tables that are as shown in the diagram above. On the basis of FullTimeIndicator flag, you intend to extract address information about full-time employees. In order to simplify the extraction process, you have to design a data access layer. So what should you do?

A. You should design an Entity Data Model. The EMPLOYEES and ADDRESS entities are contained in this Model B. On the database, you should create a view. Full-time employees and their address details are included in it

http://www.test4pass.com Leading the way in IT Certification Exams


Test4pass

Expert

In

IT

Certification

Exams

C. You should re-design the underlying database model. Employee and address information are included in one table D. You should design a conceptual Entity Data Model. An entity named EMPLOYEE_ADDRESS is contained in the Model. Make sure that information about employees and their addresses is contained in this entity Answer: D

3. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 to create a database which will be use by a scheduling application. The following information is stored in this database: Rooms Classes Students Teachers You have to consider the following facts in the design plan: Each room can host one or more classes; Each class can be in one or more rooms; Each teacher can teach one or more classes; Each student can register for one or more classes. Look at the entities below: Rooms; Classes; Students; Teachers; ClassesTeachers; ClassesStudents You identify these entities for the database design. In order to ensure normalization, you have to design the database. So what should you do? A. First, a new entity named ClassesRooms should be added. Then use this entity to establish a relationship between the Classes and Rooms entities B. First, a new entity named TeachersRooms should be added. Then use this entity to establish a relationship between the Teachers and Rooms entities C. First, a new entity named StudentsRooms should be created. Then use this entity to establish a relationship between the Students and Rooms entities. D. First, a new entity named TeachersStudents should be added. Then use this entity to establish a relationship between the Teachers and Students entities Answer: A

http://www.test4pass.com Leading the way in IT Certification Exams


Test4pass

Expert

In

IT

Certification

Exams

4. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 instance to create a database solution which has some requirements: mport data from various data sources such as Microsoft Office Excel, Microsoft SQL Server 2000, Microsoft SQL Server 2005, and CSV files; Profile the source data before it is imported; Allow mobile users to use heterogeneous data stores; Provide mobile users with collaboration and offline capabilities. In order to achieve these requirements, you have to configure the suitable SQL Server components. When performing this, you have to use as little administrative effort as possible. So which SQL Server components should you use? (choose more than one) A. Reporting Services B. Integration Services C. Analysis Services D. Notification Services E. Microsoft Sync Framework Answer: BE

5. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 to create a database solution. The full-text search component is installed in the database which supports a Web site. Look at the exhibit below: You intend to create a table named Courses which has the structure above. On the basis of the CourseTitle field, users of the Web site will search for courses. When the search is launched for a course by a user, a full-text must be constructed to ensure the compliances below: when the exact search phrase is found, rows are returned; rows are in order of how well they match with the search phrase. So what should you specify in the full-text query?

A. A CONTAINS predicate

http://www.test4pass.com Leading the way in IT Certification Exams


Test4pass

Expert

In

IT

Certification

Exams

B. A FREETEXT predicate C. A CONTAINSTABLE function D. A FREETEXTTABLE function Answer: C

6. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 to create a database solution. You are creating a database to support the office manager. The exhibit below shows the structure of the database. The database you design must meet the requirements below: First, an employee can be given more than one task. Second, the task is deleted upon completion and when deleted, the associated assignment is deleted. Third, the employee link to the assignment is replaced with a NULL value when an employee is no longer available to complete a task. So what should you do to implement these requirements to maintain data integrity?

A. On the Employee, Task, and Assignment entities, DDL INSERT triggers should be created B. On the TaskID and EmployeeID attributes in the Assignment entity, CHECK constraints should be created C. On the TaskID and EmployeeID attributes in the Task and Employee entities, foreign Keys constraints should be created respectively. You specify the appropriate On Delete action after the Assignment entity is referenced. D. On the TaskID and EmployeeID attributes in the Assignment entity, Foreign Keys constraints should be created. You specify the appropriate On Delete action. After the Task and Employee entities are referenced respectively. Answer: D

7. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 to create a database. There's a table which is partitioned into

http://www.test4pass.com Leading the way in IT Certification Exams


Test4pass

Expert

In

IT

Certification

Exams

four geographic regions in the database. The table is named Selling.Items. Look at the stored procedures below: CREATE STORED PROCEDURE usp_Update @RegionID tinyint AS UPDATE Sales.Inventory SET Qty = T.CurrentQuantity FROM Sales.Inventory I JOIN Sales.TempData T ON I.ItemID = T.ItemID AND I.RegionID = @RegionID; You use the stored procedure above, the UPDATE statement locks the Sales.Inventory table. So what should you do to prevent this from happening? A. You should run this Transact-SQL statement: ALTER TABLE Sales.Inventory SET LOCK_ESCALATION = AUTO B. You should run this Transact-SQL statement: ALTER TABLE Sales.Inventory SET LOCK_ESCALATION = TABLE C. The usp_Update stored procedure should be modified to use the NOLOCK table hint for the UPDATE statement D. The usp_Update stored procedure should be modified to use the SERIALIZABLE table hint for the UPDATE statement Answer: A

8. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 to create a database. A database includes a table named Selling. Client order summary information is contained in the Selling table. A stored procedure in created and it uses a SELECT statement and it must return a precise summation of the total sales for the current day when executing. When the stored procedure is being executed, you have to prevent any data modification in the Selling table by using a query hint. So which query hint should you use? A. TABLOCKX B. READPAST

http://www.test4pass.com Leading the way in IT Certification Exams


Test4pass

Expert

In

IT

Certification

Exams

C. HOLDLOCK D. READCOMMITTED Answer: A

9. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 to create a database solution. There's a stored procedure in a database. This stored procedure retrieve data from a table and produces aggregations by using a transaction. Now you have to design a solution and it must satisfy the requirements below: When the stored procedure is being executed, insert operations in the table can be performed. When the stored procedure is being executed, update operations cannot be performed on the retrieved data. You must make sure that the requirements can be met. So what isolation level should you use? A. SERIALIZABLE B. READ COMMITTED C. REPEATABLE READ D. READ UNCOMMITTED Answer: C

10. You work in an International company named TAKEEEN. And you're in charge of the database of your company. You intend to use SQL Server 2008 to create a database solution. There's a query which is used very often. But you notice that this query executes quite slow. This query often uses full-table scans while not indexes. Because of this, other queries that modify the table are to be blocked. On the underlying tables, the indexing strategy that the query uses can change. Now you have to design a solution which removes full-table scans and allows the query optimizer to select the appropriate index. So what should you do? A. The INDEX table hint has to be used B. The NOEXPAND table hint has to be used C. The INDEX(0) table hint has to be used. D. The FORCESEEK table hint has to be used Answer: D

http://www.test4pass.com Leading the way in IT Certification Exams


Contact Test4pass

We are proud of our high-quality customer service, which serves you around the clock 24/7.

To get your problem resolved instantly, live support Read Our Frequently Asked Questions (FAQs) We have gathered the most frequently asked questions for you. Please read our list of FAQs.

Contact us by Live Messenger Sales:

Test4pass(at)hotmail.com

You can reach us at any of the email addresses listed below Please allow up to 24 hours for us to respond

•

MSN:

Test4pass@hotmail.com

http://www.Test4pass.com

help you 100% pass your IT certifications Exams on the first try


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.