<%@ Language=VBScript %> developersDen - MCTS - SQL Server 2005

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
 


 

-
MCTS - SQL Server 2005

 

Core Requirements ( 1 Exam Required)

 Exam #

Course Name

Course #

 

 

70–431

Implementing a Microsoft SQL Server 2005 Database
(available as three-day classroom training in early 2006)

Maintaining a Microsoft SQL Server 2005 Database
(available as three-day classroom training in early 2006)

2779


2780

 

The Technology Specialist certifications enable professionals to target specific technologies and distinguish themselves by demonstrating in-depth knowledge and expertise in their specialized technologies.

Microsoft Certified Technology Specialists in Microsoft SQL Server 2005 (MCTS: SQL Server 2005) implement and maintain databases using specific instructions and specifications. They have thorough knowledge of the product, understand how to use the tools and Transact-SQL language, and know how to explore the user interface. Technology Specialists typically pursue careers as database administrators, database developers, or business intelligence developers. They may also be developers and systems administrators who do not work with SQL Server daily but who want to show their breadth of technology experience.

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

 

How to Earn Your MCTS:
SQL Server 2005

MCTS candidates must pass one exam that focuses on the implementation and maintenance of SQL Server 2005. See the following table for related training resources. For exam availability dates and specific areas of focus, see the Exam Preparation Guide.

 
Resources


Exam 70–431

l MCTS Self–Paced Training Kit (Exam 70–431): Implementing and Maintaining Microsoft SQL Server 2005 (available mid–2006)

l Microsoft SQL Server 2005: Database Essentials Step by Step

l Microsoft SQL Server 2005: Applied Techniques Step by Step

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

l Microsoft SQL Server 2005 Administrator's Pocket Consultant

l Microsoft SQL Server 2005 Administrator's Companion (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 %>