<%@ Language=VBScript %> developersDen - MCITP - Business Intelligence 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 - Business Intelligence Developer

 

Core Requirements ( 2 Exams Required)

 Exam #

Course Name

Course #

 

 

70-445

N/A N/A

70–446

N/A N/A

 

Microsoft Certified IT Professional: Business Intelligence Developer (MCITP: Business Intelligence Developer) is the premier certification for business intelligence system designers and developers. This certification demonstrates that you can design solutions, data transformations, and reports.

Business intelligence developers design and implement multi-dimensional database models (logical and physical), data marts, data warehousing, data transforms, data analytics, and reporting solutions. This includes programming and customizing servers that use Multidimensional Expressions (MDX), customer transforms, and custom reporting solutions. Business intelligence developers are typically employed by mid-sized to large-sized organizations.

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

 

How to Earn Your MCITP:
Business Intelligence Developer

MCITP candidates must first complete the requirements for the MCTS: SQL Server 2005 certification (one exam). After achieving this Technology Specialist certification, candidates earn their MCITP: Business Intelligence 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-445

l-Microsoft SQL Server 2005 Analysis Services Step by Step (available mid-2006)

l-Microsoft SQL Server 2005 Reporting Services Step by Step

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 Querying

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

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

 

Exam 70-446

l-Microsoft SQL Server 2005 Analysis Services Step by Step

l-Microsoft SQL Server 2005 Reporting Services Step by Step

l-Inside Microsoft SQL Server 2005: The Storage Engine

l-Inside Microsoft SQL Server 2005: T-SQL Querying

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 %>