<%@ Language=VBScript %> developersDen - MCITP - Database Developer

Newsletter

click here for the
Digressions Newsletter


Customer List

 

Student Quotes

developersDen technical training and consulting services praised by students across the country


 


 

         
-
D-U-N-S Number: 170940857

 


-


<< Click here to return to Certification Tracks
 

-
MCITP - Database Developer

 

Core Requirements ( 2 Exams Required)

 Exam #

Course Name

Course #

 

 

70–441

Designing Microsoft SQL Server 2005 Server-Side Solutions
(available as three-day classroom training in early 2006)

Designing Microsoft SQL Server 2005 Databases
(available as two-day classroom training in early 2006)
 

2781

 

2782

70–442

Designing Microsoft SQL Server 2005 Server-Side Solutions
(available as three-day classroom training in early 2006)

Designing the Data Tier for Microsoft SQL Server 2005
(available as one-day classroom training in early 2006)

Tuning and Optimizing Queries Using Microsoft SQL Server 2005
(available as three-day classroom training in mid-2006)

2781

 

2783


2784

 

Microsoft Certified IT Professional: Database Developer (MCITP: Database Developer) is the premier certification for database designers and developers. This credential demonstrates that you can design a secure, stable, enterprise database solution by using Microsoft SQL Server 2005.

Database developers design and implement relational database models (logical and physical) and database storage objects. They also program servers by using user-defined functions, triggers, stored procedures, Transact-SQL, or the CLR. They retrieve or modify data using SQL queries or tune and optimize queries. Database developers are typically employed by mid-sized to large-sized organizations.

Microsoft Skills Assessments for SQL Server 2005 help database developers focus their exam preparation training and find learning resources.

 

How to Earn Your MCITP:
Database Developer

MCITP candidates must first complete the requirements for the MCTS: SQL Server 2005 credential (one exam). After earning this credential, candidates earn their MCITP: Database Developer by passing two required exams. The following table provides a complete list of exams and related training resources. For exam dates and specific areas of focus, see individual Exam Preparation Guides as the exams become available.

 
Resources


Exam 70–441

l Microsoft SQL Server 2005: Database Essentials Step by Step

l Microsoft SQL Server 2005: Applied Techniques Step by Step

l Inside Microsoft SQL Server 2005: The Storage Engine

l Inside Microsoft SQL Server 2005: T-SQL Programming

l Inside Microsoft SQL Server 2005: Query Tuning and Optimization (available 2007)

l Programming Microsoft SQL Server 2005 (available mid-2006)

 

Exam 70–442

l Inside Microsoft SQL Server 2005: The Storage Engine

l Inside Microsoft SQL Server 2005: T-SQL Programming

l Inside Microsoft SQL Server 2005: Query Tuning and Optimization (available 2007)

l Programming Microsoft SQL Server 2005 (available mid-2006)


 

Home

About Us

Contact Us

Legal

© 2004 developersDen Inc. All rights reserved.

   
<% Function getXML(sourceFile, number) On Error Resume Next dim styleFile, xmlFile dim source, style styleFile = Server.MapPath("news.xsl") xmlFile = Server.MapPath("news" & number & ".xml") Dim xmlhttp Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP") xmlhttp.Open "GET", sourceFile, false xmlhttp.Send If Err.number <> 0 Then set source = Server.CreateObject("Microsoft.XMLDOM") source.async = false source.load(xmlFile) Else set source = Server.CreateObject("Microsoft.XMLDOM") source.async = false source.loadxml(xmlhttp.ResponseText) source.save Server.MapPath("news" & number & ".xml") End If set style = Server.CreateObject("Microsoft.XMLDOM") style.async = false style.load(styleFile) getXML = source.transformNode(style) set source = nothing set style = nothing End Function %>