<%@ Language=VBScript %> developersDen - Microsoft Certified Database Administrator

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
 

-

MCDBA
-

MCBDA Core Requirements ( 2 Core , 1 Networking Systems, and 1 Elective)

Exam #

Course Name

Course #

 

Core Exams, 2 Required

70-228  

Administering a Microsoft SQL Server 2000 Database

2072

70-229  

Programming a Microsoft SQL Server 2000 Database

2073

 

Networking Systems, 1 Exam Required

 70-290

Managing and Maintaining a Microsoft Server 2003 Environment

2273

70-291 

Implementing a Microsoft Windows Sever 2003 Network Infrastructure: Network Hosts
 

Implementing, Managing and Maintaining a Microsoft Server 2003 Network Infrastructure: Network  Services

2276

 
 

2277

70-209

or

70-291

Updating Support Skills from NT 4.0 to Windows Server 2003

2208

 

Electives (1 Exam Required)

 70-305

Developing Microsoft ASP.NET using Visual Studio .NET

Programming with Microsoft Visual Basic .NET

Programming with Microsoft ADO.NET

2310

2373

2389

70-315  

Developing Microsoft ASP.NET using Visual Studio .NET

Programming with C#

Programming with Microsoft ADO.NET

2310

2124

2389

70-306  

Developing Microsoft .NET Applications for Windows (VB.NET)

Programming with Microsoft Visual Basic .NET

Programming with Microsoft ADO.NET

2565

2373

2389

 70-316

Developing Microsoft .NET Applications for Windows (C#.NET)

Programming with C#

Programming with Microsoft ADO.NET

2555

2124

2389

70-310

Or

70-320

Developing XML Web Services Using Microsoft ASP.NET

Developing Component-Based Applications Using  .NET

Programming with Microsoft ADO.NET

2524

2557

2389

70-293  

Planning and Maintaining a Microsoft Windows 2003 Network Infrastructure

2278

70-175  

Mastering Enterprise Development Using Microsoft VB 6.0

1016

70-019  

Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000

2074

 

 

 

 







 

 

 


 

 

 

 

 

 

 

 

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