Exam Number/Code: 70-442
Exam name: PRO: Designing and Optimizing Data Access by Using Microsoft SQL Server 2005
We guarantee your success at the 70-442 first attempt,FAST!
We provide 100% pass guarantee with our products. That is because we
have 100% trust in the abilities of our professional and experience
product team, and our record is a proof of that.
How do we maintain 100% Guarantee on Products?
We
at CramBible are committed to our customer's success. Our products are
created with utmost care and professionalism. We utilize the experience
and knowledge of a team of industry professionals from leading
organizations all over the world.
'Success of our customers is our success'
We
understand that your time is precious and our products are intended to
help utilize it in an efficient way. Senior IT professionals craft the
products with great efforts. We strive towards continuous improvement of
our products and service. Customers are really happy with our products but
if one of our customers does not succeed in an exam we fully accommodate
at Single E-mail notification. Additionally we review that product
instantly.
Failing an Exam won't damage you financially as we provide 100% claim
for your payment. On request we can provide refund. Think again! What do you have to lose?
Moneyback guarantee:
Simple and Easy! To take
advantage of the guarantee, simply contact Customer Support, requesting
the exam you would like to claim. Send us a scanned copy of your failed
exam and we will promptly proceed to Refund.
CramBible.com Guarantee insures your Success Otherwise Get Moneyback!
Product Description
3CB is your source for the IT Exam 70-442 exam. With our 70-442 Exam Resources, you can be rest assured that you will Pass your 70-442 Exam on Your First Try. Our Exams are written and formatted by Top senior IT Professionals working in today is prospering companies and data centers. All of our practice exams including the 70-442 exam guarantee you success on your First Try. 70-442 is a challenging exam,with our 70-442 study guide,you can feel safe with our question and answer that will help you in obtaining your successful completion of your 70-442 exam.
70-442 In Summary:
1) There are basically six steps that you should follow to earn your way to certification, namely:
2) Decide which certification is right for you - Get a certification overview
3) Gain hands-on experience with products - View requirements for specific certifications
4) Expand your experience with training -Make use of training materials. There are excellent PDF format materials available from 3cb.com, prepared by experts on their staff.
5) Know what to expect on exams - Review a good study guide.
6) Take your required exam - You can register at either Prometric or Pearson VUE test centers.
7) Free Update for 90-days.
Commitment to this Success:
At this we are committed to you ongoing success. this exams and questions are constantly being updated and compared to industry standards.
Our Customer Support is #1, fast and helpful.
Will I pass using your Q & A Product?
Yes crambible
Question and Answers Product is enough to pass the Exam. We recommend a 7
day study time for the candidates for any up-coming Exams.it will help you in
evaluating your preparation before Actual Exam.
How to download Products?
Products can be downloaded
very easily from the Member's Account after logging in. Click on the Order Code or "view" button
and begin download.
What is the format of your products?
Adobe Acrobat PDF files.The guides you download are in rar format originally. rar files are "archives" used for distributing and storing files. So you need an winrar tool 3.0 plus version to extract PDF files from the rar files first before being able to read the PDF guides with Acrobat Reader.
Forget Password?
Please visit Password Recovery.
We'll send you an e-mail message containing new password.
How can I get Discount?
We have combined multiple exam
products for maximum savings; Value Packs are a good way of getting
Discounted Products. However, if you are purchasing 3 or more mixed
products in a single invoice e-mail sales@3cb.com and they will
provide you with a special Discount Price.
What if I fail?
Don't worry about failing; you're
protected by Exam refund guarantee. crambible preparation materials
ensure your success. But if by any undue situation you fail to pass the
corresponding Exam you can claim for refund Guarantee. Click Here
for more details.
What
if I need assistance?
You can always contact Customer Support
or a member of our sales team using either of the following email
contacts:
web@3cb.com
Sales@3cb.com
Read the full crambible
F.A.Q.
Four fast simple and easy steps to certification preparation.
1. Select Product & Add to Cart
Through "Search" or "Product" to find the subject which you needed, click the button "Add to cart", and add the Q&A to the cart.
2. Login to CramBible
Click "Sing up" on top left corner on website page, becomes the formal member of this website. (the registered users, can click the "login" directly, and then load the website.)
3. Payment
Payment with CramBible is safe, brisk and easy. CramBible provides a secure method of accepting Credit or Debit card Payments through a number of choices such as Visa, MasterCard, and American Express. 2CheckOut, PayPal, Western Union also available.
4. Download
Once the Payment is confirmed, you can access the products instantly in your login.
Enjoy free product and exam updates for the life of your subscription.
=
Microsoft Microsoft Licensing exam 70-442 Web Demo
This webdemo is just a demo data, only for reference and learning, there is no other purposes.
1.You are designing a stored procedure that records a sale and
decreases the inventory for the items that are being purchased. The
stored procedure contains the following code.
CREATE PROCEDURE UpdateSalesAndInventory (@ProductID int, @quantity int)
AS
SET IMPLICIT_TRANSACTION ON
INSERT INTO Sales.SalesOrder Values(@ProductID, @quantity)
UPDATE Inventory.ProductInventory
SET Quantity = Quantity - @quantity
WHERE ProductID = @ProductID
You run this stored procedure and discover that no updates are applied. You need to resolve the problem. What should you do?
A. Change SET IMPLICIT_TRANSACTION to OFF.
B. Use multiple active result sets (MARS) to execute the stored procedure.
C. Add logic to commit or roll back the transaction based on the successful updates of the data.
D. Add a BEGIN TRANSACTION statement to the stored procedure.
Answer: C
3. You are troubleshooting concurrency problems with the code that was
originally developed on the SQL Server 2000 database. You discover that
there are excessive read locks on important tables. You need to resolve
the problem. What should you do?
A. Set the transaction isolation level to REPEATABLE READ.
B. Set the transaction isolation level to SERIALIZABLE.
C. Set the ALLOW_SNAPSHOT_ISOLATION database option to ON.
D. Set the READ_COMMITTED_SNAPSHOT database option to ON.
Answer: D
4. You are designing the stored procedure that updates inventory quantities. The stored procedure contains the following code.
CREATE PROCEDURE UpdateInventory (@ProductID int, @Amount int)
AS
BEGIN TRANSACTION
DECLARE @CurrentQuantity int
SELECT @CurrentQuantity = Quantity
FROM Inventory.ProductInventory
WHERE ProductID = @ProductID
UPDATE Inventory.ProductInventory
SET Product.Quantity = @CurrentQuantity + @Amount
WHERE ProductID = @ProductID
IF @@ERROR <> 0
ROLLBACK TRAN
ELSE
COMMIT TRAN
You discover that the ProductInventory column is occasionally updated
incorrectly. You need to resolve the problem. What should you do?
A. Add a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement to the stored procedure.
B. Remove the SELECT statement from the stored procedure. Perform the
update using the Product.Quantity column instead of the
@CurrentQuantity variable.
C. Add a NOLOCK hint to the SELECT statement.
D. Move the BEGIN TRANSACTION statement so that it immediately precedes the UPDATE statement.
Answer: B
5. BACKGROUND
company overview
Tailspin toys is a regional toy store chain,with stores in 30 cities.
Planned Changes
The company wants to add an online store to its chain of retail
stores.A prototype of the online store was developed by using SQL
server 2000 .However,the IT manager wants to move to SQL Sever 2005 to
take advantage of its new features.
The IT manager plans to automate certain database maintenance
operations,including scripting of database objects,backup and restore
activities ,and creation and maintenance of endpoints.
Problem Statement
The nightly processing of the sales data from each store executes very
slowly.with the addition of the online store,this performance must be
improved in order to complete the processing within the allotted frame.
EXISTING ENVIRONMENT
Existing Application Environment
The prototype of the online store is experiencing poor concurrency.
Existing supporting Infrastructure
Currently,the point of sale(POS) system for the retail stores has a SQL
Server 2000 database.Tailspin Toys has an Enterprise Resource
planning(ERP) system running on UNIX that must be able to communicate
with the online store's Inventory database.
BUSINESS REQUIREMENTS
General Application Solution Requirements
The company is developing an online store that is capable of displaying
pictures,prices,and information on products that are sold by Tailspin
Toys.
Customers must be able to find out whether toys that are available
online are also available at a physical store for pickup.The store
inventory for a selected store must be queried real-time as the
individual toys are displayed.Inventory quantities for a toy must all
be displayed prior to processing the next toy.
Store managers often run reports that query for all sales for a given date range.
New toys are introduced at the online store only once per month.
Performance
When a customer uses the online store to perform a search for toys,it should return results in 15 seconds or less.
Users can search for a toy category. The results of this search should
be used for future searches by the same user,to minimize round trips to
the database.
TECHNICAL REQUIREMENTS
Resource usage on the database server must be minimized.
The online store will have two databases named Sales and Inventory.When
a sale is completed,both databases must be kept consistent with each
other.
The IT department has specified that the online store will use a service-oriented architecture for data access.
2. You need to design the data access strategy for the Tailspin Toys
online store search requirement. Which strategy should you use?
A. System.Xml.XmlReader
B. System.Data.SqlClient.SqlDataReader
C. System.Data.DataSet
D. CLR user-defined type
Answer: C
6. You need to design the user interface that will display availability
to pick up items at a retail store for items that are ordered online.
You also must minimize the number of connections to the database. Which
data access strategy should you use?
A. ActiveX data objects (ADO)
B. multiple active result sets (MARS)
C. System.Data.DataReader
D. System.Data.DataSet
Answer: B
7. BACKGROUND
Company Overview
Margie's Travel is a small regional travel agency that handles many different types of travel arrangements.
Planned Change
Margie's Travel has purchased a COM component named Cruisex to be used to access cruise lines information.
Margie's Travel hosts the component in COM+.Cruisex will be used for
two purposes:to retrieve a read-only list of available cruises,and to
make reservations on cruises.Cruisex uses all default settings.
Problem Statements
Many of the company's in-house travel agents that the Web site that is used for making travel reservations
is too difficult to use. The company wants to create a smart client
application that will deliver a richer client experience for the
agents. The solution must support the Web site application for off-site
travel agents.
A monthly agent-commission report has been created. This report will be
executed once per month.This report currently uses a cursor with the
INSENSITIVE argument.The test team reports that this report runs slowly
and consumes a significant amount of database server resources.
A stored procedure named UpdateSeatSelection is used to update seat selections for airline reservations.
The test team reports that there is significant blocking when this stored procedure is being executed.
EXISTING ENVIRONMENT
Existing Supporing Infrastructure
The current travel agent application stores its data in a SQL Server 2005 database.
BUSINESS REQUIREMENTS
General Application Solution Requirements
The duplication of application logic must be minimized.
After an airline reservation is made,the aqent must help the customer
with seat selection. The seat selection process should not block the
application from performing other reservation tasks.However,the agent
must have the ability to cancel a seat selection query prior to its
completion.The application must receive a reply that cancellatio was
successful.
A report named FlightsBooked is being developed.The test team reports
that executing the report twice within a single transaction using the
same parameters occasionally produces different results.
However,subsequnt executions with those same parameters produce
consistent results.
A feature must be developed that will allow travel agents to seach for
customers by name of partial name.The data that is returned must not
include any data that is not yet committed.
Performance
To improve performance for the data access layer,the number of round
trips to the database must be limited,particularly for data that
changes only infrequently.
Infrequent changes are made to the information about trading partners
such as airlines,cruise lines,and hotel chains.Margie's Travel wants to
limit the bandwidth that is required to ensure that the smart client
application has the current values for trading partners .The company
wants to mininize the development effort that is needed to support this
requirement.
When an agent queries for available fight information,the data must be
returned as quickly as possible.This data will not be modified by the
agent.
A monthly agent-commission report has been created.This report will be
executed once per month.This report currently uses a cursor with the
INSENSITIVE argument.The test team reports that this report runs slowly
and consumes a significant amount of database server reslurces.
Recoverability
Once per month,all sales data must be transferred to the Accounting
database,which is on the same database server instance.In the case of
failure,recovery of the travel agent database and the Accounting
database must be ensured to the same logical point in time.
TECHNICAL REQUIREMENTS
Security
External access to company data must be allowed for only a specified set of IP addresses.
9. You need to improve the performance and reduce the database resource
usage of the stored procedure that will be used to generate the monthly
agent-commission report. What should you do?
A. Remove the INSENSITIVE argument from the cursor declaration.
B. Add the OPTIMISTIC argument to the cursor declaration.
C. Rewrite the stored procedure using set operations.
D. Rewrite the stored procedure as a user-defined type.
Answer: C
8. You design the following stored procedure that will be used by sales managers.
CREATE PROCEDURE StoreSales (@StartDate datetime, @EndDate datetime)
AS
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
SELECT StoreID, TotalSales
FROM Sales
WHERE SaleDate BETWEEN @StartDate AND @EndDate
While tuning the query, you notice that table locks are occurring. You need to resolve the problem. What should you do?
A. Change the isolation level to READ COMMITTED.
B. Add a HOLDLOCK table hint to the query.
C. Add a NOWAIT table hint to the query.
D. Add a READPAST table hint to the query.
Answer: A
2. You need to design the data access strategy for the Tailspin Toys
online store search requirement. Which strategy should you use?
A. System.Xml.XmlReader
B. System.Data.SqlClient.SqlDataReader
C. System.Data.DataSet
D. CLR user-defined type
Answer: C
2. You are designing a stored procedure that records a sale and
decreases the inventory for the items that are being purchased. The
stored procedure contains the following code.
CREATE PROCEDURE UpdateSalesAndInventory (@ProductID int, @quantity int)
AS
SET IMPLICIT_TRANSACTION ON
INSERT INTO Sales.SalesOrder Values(@ProductID, @quantity)
UPDATE Inventory.ProductInventory
SET Quantity = Quantity - @quantity
WHERE ProductID = @ProductID
You run this stored procedure and discover that no updates are applied. You need to resolve the problem. What should you do?
A. Change SET IMPLICIT_TRANSACTION to OFF.
B. Use multiple active result sets (MARS) to execute the stored procedure.
C. Add logic to commit or roll back the transaction based on the successful updates of the data.
D. Add a BEGIN TRANSACTION statement to the stored procedure.
Answer: C
3. You are troubleshooting concurrency problems with the code that was
originally developed on the SQL Server 2000 database. You discover that
there are excessive read locks on important tables. You need to resolve
the problem. What should you do?
A. Set the transaction isolation level to REPEATABLE READ.
B. Set the transaction isolation level to SERIALIZABLE.
C. Set the ALLOW_SNAPSHOT_ISOLATION database option to ON.
D. Set the READ_COMMITTED_SNAPSHOT database option to ON.
Answer: D
4. You are designing the stored procedure that updates inventory quantities. The stored procedure contains the following code.
CREATE PROCEDURE UpdateInventory (@ProductID int, @Amount int)
AS
BEGIN TRANSACTION
DECLARE @CurrentQuantity int
SELECT @CurrentQuantity = Quantity
FROM Inventory.ProductInventory
WHERE ProductID = @ProductID
UPDATE Inventory.ProductInventory
SET Product.Quantity = @CurrentQuantity + @Amount
WHERE ProductID = @ProductID
IF @@ERROR <> 0
ROLLBACK TRAN
ELSE
COMMIT TRAN
You discover that the ProductInventory column is occasionally updated
incorrectly. You need to resolve the problem. What should you do?
A. Add a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement to the stored procedure.
B. Remove the SELECT statement from the stored procedure. Perform the
update using the Product.Quantity column instead of the
@CurrentQuantity variable.
C. Add a NOLOCK hint to the SELECT statement.
D. Move the BEGIN TRANSACTION statement so that it immediately precedes the UPDATE statement.
Answer: B
5. BACKGROUND
company overview
Tailspin toys is a regional toy store chain,with stores in 30 cities.
Planned Changes
The company wants to add an online store to its chain of retail
stores.A prototype of the online store was developed by using SQL
server 2000 .However,the IT manager wants to move to SQL Sever 2005 to
take advantage of its new features.
The IT manager plans to automate certain database maintenance
operations,including scripting of database objects,backup and restore
activities ,and creation and maintenance of endpoints.
Problem Statement
The nightly processing of the sales data from each store executes very
slowly.with the addition of the online store,this performance must be
improved in order to complete the processing within the allotted frame.
EXISTING ENVIRONMENT
Existing Application Environment
The prototype of the online store is experiencing poor concurrency.
Existing supporting Infrastructure
Currently,the point of sale(POS) system for the retail stores has a SQL
Server 2000 database.Tailspin Toys has an Enterprise Resource
planning(ERP) system running on UNIX that must be able to communicate
with the online store's Inventory database.
BUSINESS REQUIREMENTS
General Application Solution Requirements
The company is developing an online store that is capable of displaying
pictures,prices,and information on products that are sold by Tailspin
Toys.
Customers must be able to find out whether toys that are available
online are also available at a physical store for pickup.The store
inventory for a selected store must be queried real-time as the
individual toys are displayed.Inventory quantities for a toy must all
be displayed prior to processing the next toy.
Store managers often run reports that query for all sales for a given date range.
New toys are introduced at the online store only once per month.
Performance
When a customer uses the online store to perform a search for toys,it should return results in 15 seconds or less.
Users can search for a toy category. The results of this search should
be used for future searches by the same user,to minimize round trips to
the database.
TECHNICAL REQUIREMENTS
Resource usage on the database server must be minimized.
The online store will have two databases named Sales and Inventory.When
a sale is completed,both databases must be kept consistent with each
other.
The IT department has specified that the online store will use a service-oriented architecture for data access.
?>