SlideShare a Scribd company logo
1 of 6
Implementing a Microsoft SQL Server 2008
Database
Course 6232A: Five days; Instructor-Led

Introduction
Elements of this syllabus are subject to change.
This five-day instructor-led course provides students with the knowledge and skills to implement a Microsoft SQL Server
2008 database. The course focuses on teaching individuals how to use SQL Server 2008 product features and tools related to
implementing a database.


Audience
This course is intended for IT Professionals who administer and maintain SQL Server databases.


At Course Completion
After completing this course, students will be able to:

•   An understanding of basic relational database concepts, including:

•   Logical database design.

•   Physical database design.

•   How data is stored in tables (rows and columns).

•   Data integrity concepts.

•   Relationships between tables and columns (primary key and foreign key, one-to-one, one-to-many, and many-to-many).
    Basic knowledge of the Microsoft Windows operating system and its core functionality. For example, how to use Windows
•
    Explorer, open and save files, and what a client/server application interaction means.


Prerequisites
This course requires that students meet the following prerequisites:
    Basic knowledge of the Microsoft Windows operating system and its core
•
    functionality.
•   Working knowledge of Transact-SQL.

•   Working knowledge of relational databases.

•   Some experience with database design.


Course Outline

Module 1: Creating Databases and Database Files
The students will learn one of the most fundamental tasks that a database developer must perform, the creation of a
database and its major components, such as creating databases, setting database options, creating filegroups, schemas, and
database snapshots.
Lessons

          •   Lesson 1: Creating Databases

          •   Lesson 2: Creating Filegroups

          •   Lesson 3: Creating Schemas

          •   Lesson 4: Creating Database Snapshots
Lab: Creating Databases and Database Files

          •   Exercise 1: (Level 200) Creating a Database

          •   Exercise 2: (Level 200) Creating Schemas
              Exercise 3: (Level 300) Creating a Database
          •
              Snapshot
After completing this module, students will be able to:

        •   Create databases

        •   Create filegroups

        •   Create schemas

        •   Create database snapshots


Module 2: Creating Data Types and Tables
The students will learn about the system-supplied data types in SQL Server 2008. They will learn how to define custom
Transact-SQL data types and how to create tables and how to use partitioned tables to organize data into multiple partitions.
Lessons

        •   Lesson 1: Creating Data Types

        •   Lesson 2: Creating Tables
            Lesson 3: Creating Partitioned
        •
          Tables
Lab: Creating Data Types and Tables

        •   Exercise 1 (Level 200): Creating Data Types
            Exercise 2 (Level 200): Using New Date and Time Data
        •
            Types
        •   Exercise 3 (Level 200): Creating Tables

        •   Exercise 4: (Level 300) Creating Partitioned Tables
After completing this module, students will be able to:

        •   Create new data types.

        •   Create new tables.
            Create partitioned
        •
            tables.

Module 3: Creating and Tuning Indexes
The students will learn how to plan, create, and optimize indexes to attain optimal performance benefits.
Lessons

        •   Lesson 1: Planning Indexes

        •   Lesson 2: Creating Indexes
            Lesson 3: Optimizing
        •
          Indexes
Lab: Creating and Tuning Indexes
            Exercise 1: (Level 200) Creating
        •
            Indexes
        •   Exercise 2: (Level 300) Tuning Indexes
After completing this module, students will be able to:

        •   Plan indexes.

        •   Create indexes.

        •   Optimize indexes.


Module 4: Implementing Data Integrity by Using Constraints and Triggers
The students will learn about implementing data integrity in SQL Server 2008 by using constraints. They will also implement
data integrity by using triggers.
Lessons

        •   Lesson 1: Data Integrity Overview

        •   Lesson 2: Implementing Constraints
•   Lesson 3: Implementing Triggers
Lab: Implementing Data Integrity by Using Constraints and Triggers

        •   Exercise 1: (Level 200) Creating Constraints

        •   Exercise 2: (Level 200) Disabling Constraints

        •   Exercise 3: (Level 300) Creating Triggers
After completing this module, students will be able to:

        •   Describe the options for enforcing data integrity in SQL Server 2008.

        •   Implement data integrity in SQL Server 2008 databases by using constraints.

        •   Implement data integrity in SQL Server 2008 databases by using triggers.


Module 5: Using XML
The students will learn how to work with XML, including use of the FOR XML clause, the OPENXML function, XQuery
expressions, and the xml native data type. They will learn the considerations to be taken into account when creating XML
indexes and the syntax used to create the XML indexes. They will also learn what XML schemas and XML schema collections
are as well as how to use them to implement typed XML data.
Lessons

        •   Lesson 1: Using the XML Data Type

        •   Lesson 2: Retrieving XML by Using FOR XML
            Lesson 3: Shredding XML by Using
        •
            OPENXML
        •   Lesson 4: Introducing XQuery

        •   Lesson 5: Creating XML Indexes

        •   Lesson 6: Implementing XML Schemas
Lab: Using XML

        •   Exercise 1: (Level 200) Mapping Relational Data and XML
            Exercise 2: (Level 200) Storing XML Natively in the
        •
            Database
        •   Exercise 3: (Level 300) Using XQuery with XML Methods

        •   Exercise 4: (Level 200) Create XML Indexes

        •   Exercise 5: (Level 300) Implementing XML Schemas
After completing this module, students will be able to:

        •   Use the xml data type.

        •   Retrieve XML by using the FOR XML clause.

        •   Shred XML by using the OPENXML function.

        •   Use XQuery expressions.

        •   Create XML indexes.
            Implement data integrity in SQL Server 2008 databases by using XML
        •
            schemas.

Module 6: Implementing Views
The students will be introduced to the different types of views available in Microsoft SQL Server 2008 which provide a
convenient way to access data through a predefined query.
Lessons

        •   Lesson 1: Introduction to Views

        •   Lesson 2: Creating and Managing Views
            Lesson 3: Optimizing Performance by Using
        •
            Views
Lab: Implementing Views

        •   Exercise 1: (Level 200) Creating Views

        •   Exercise 2: (Level 200) Creating Indexed Views
            Exercise 3: (Level 200) Creating Partitioned
        •
          Views
After completing this module, students will be able to:

        •   Describe the purpose of views.

        •   Create and manage views.
            Explain how to optimize query performance by using
        •
            views.

Module 7: Implementing Stored Procedures
The students will learn the design and implementation of stored procedures to enforce business rules or data consistency, or
to modify and maintain existing stored procedures written by other developers.
Lessons

        •   Lesson 1: Implementing Stored Procedures
            Lesson 2: Creating Parameterized Stored
        •
            Procedures
        •   Lesson 3: Working With Execution Plans

        •   Lesson 4: Handling Errors
Lab: Implementing Stored Procedures

        •   Exercise 1: (Level 300) Creating Stored Procedures
            Exercise 2: (Level 300) Working with Execution
        •
          Plans
After completing this module, students will be able to:

        •   Implement stored procedures.

        •   Create parameterized stored procedures.

        •   Work with execution plans.

        •   Handle errors in stored procedures.


Module 8: Implementing Functions
The students will learn the design and implementation of user-defined functions that enforce business rules or data
consistency, or to modify and maintain existing functions written by other developers.
Lessons

        •   Lesson 1: Creating and Using Functions

        •   Lesson 2: Working with Functions

        •   Lesson 3: Controlling Execution Context
Lab: Implementing Functions

        •   Exercise 1: (Level 300) Creating Functions

        •   Exercise 2: (Level 300) Controlling Execution Context
After completing this module, students will be able to:

        •   Create and use functions.

        •   Work with functions.

        •   Control execution context.


Module 9: Implementing Managed Code in the Database
The students will learn to use managed code to implement database objects, such as stored procedures, user-defined data
types, user-defined functions, and triggers.
Lessons

        •   Lesson 1: Introduction to the SQL Server Common Language Runtime

        •   Lesson 2: Importing and Configuring Assemblies

        •   Lesson 3: Creating Managed Database Objects
Lab: Implementing Managed Code in the Database

        •   Exercise 1: (Level 300) Importing an Assembly
            Exercise 2: (Level 300) Creating Managed Database
        •
          Objects
After completing this module, students will be able to:
            Identify appropriate scenarios for managed code in the
        •
            database.
        •   Import and configure assemblies.

        •   Create managed database objects.


Module 10: Managing Transactions and Locks
The students will learn to use transactions and SQL Server locking mechanisms to meet the performance and data integrity
requirements of their applications.
Lessons

        •   Lesson 1: Overview of Transactions and Locks

        •   Lesson 2: Managing Transactions

        •   Lesson 3: Understanding SQL Server Locking Architecture

        •   Lesson 4: Managing Locks
Lab: Managing Transactions and Locks

        •   Exercise 1: (Level 300) Using Transactions

        •   Exercise 2: (Level 300) Managing Locks

        •   Exercise 3: (Level 300) Using Partition Locking
After completing this module, students will be able to:

        •   Describe how SQL Server 2008 transactions use locks.

        •   Execute and cancel a transaction.

        •   Describe concurrency issues and SQL Server 2008 locking mechanisms.

        •   Manage locks.


Module 11: Using Service Broker
The students will learn to use Service Broker to create secure, reliable, and scalable applications.
Lessons

        •   Lesson 1: Service Broker Overview

        •   Lesson 2: Creating Service Broker Objects
            Lesson 3: Sending and Receiving
        •
         Messages
Lab: Using Service Broker

        •   Exercise 1: (Level 300) Creating Service Broker Objects

        •   Exercise 2: (Level 300) Implementing the Initiating Service

        •   Exercise 3: (Level 300) Implementing the Target Service
After completing this module, students will be able to:

        •   Describe Service Broker functionality and architecture.

        •   Create Service Broker objects.
•   Send and receive Service Broker messages.

More Related Content

Similar to 6232 implementing a microsoft sql server 2008 database

Ms 5050
Ms 5050Ms 5050
Ms 5050
bestip
 
Expert selenium with core java
Expert selenium with core javaExpert selenium with core java
Expert selenium with core java
Ishita Arora
 
Exam View Presentation: JISC Sharing Stories September 2012
Exam View Presentation: JISC Sharing Stories September 2012Exam View Presentation: JISC Sharing Stories September 2012
Exam View Presentation: JISC Sharing Stories September 2012
Alex Walker
 
6421 configuring and troubleshooting win server 2008 network infrastructure
6421   configuring and troubleshooting win server 2008 network infrastructure6421   configuring and troubleshooting win server 2008 network infrastructure
6421 configuring and troubleshooting win server 2008 network infrastructure
bestip
 
6421 configuring and troubleshooting win server 2008 network infrastructure
6421   configuring and troubleshooting win server 2008 network infrastructure6421   configuring and troubleshooting win server 2008 network infrastructure
6421 configuring and troubleshooting win server 2008 network infrastructure
bestip
 
Leonardo's Notebooks Microsoft Excel Training
Leonardo's Notebooks Microsoft Excel TrainingLeonardo's Notebooks Microsoft Excel Training
Leonardo's Notebooks Microsoft Excel Training
adann
 

Similar to 6232 implementing a microsoft sql server 2008 database (20)

Chapter.10
Chapter.10Chapter.10
Chapter.10
 
Ms 5050
Ms 5050Ms 5050
Ms 5050
 
What you can do In WatiR
What you can do In WatiRWhat you can do In WatiR
What you can do In WatiR
 
Hyp01 essbase+planning
Hyp01 essbase+planningHyp01 essbase+planning
Hyp01 essbase+planning
 
Expert selenium with core java
Expert selenium with core javaExpert selenium with core java
Expert selenium with core java
 
Oracle dba 12c training syllabus
Oracle dba 12c training syllabusOracle dba 12c training syllabus
Oracle dba 12c training syllabus
 
Mba 758 database management system
Mba 758 database management systemMba 758 database management system
Mba 758 database management system
 
Obiee content
Obiee contentObiee content
Obiee content
 
Cursos sql server .net visual basic octubre 2010
Cursos sql server .net visual basic octubre 2010 Cursos sql server .net visual basic octubre 2010
Cursos sql server .net visual basic octubre 2010
 
Expert selenium with core java
Expert selenium with core javaExpert selenium with core java
Expert selenium with core java
 
Consultas en MS SQL Server 2012
Consultas en MS SQL Server 2012Consultas en MS SQL Server 2012
Consultas en MS SQL Server 2012
 
55242-Microsoft-Dynamics-365-Customization-and-Configuration (1).pptx
55242-Microsoft-Dynamics-365-Customization-and-Configuration (1).pptx55242-Microsoft-Dynamics-365-Customization-and-Configuration (1).pptx
55242-Microsoft-Dynamics-365-Customization-and-Configuration (1).pptx
 
BackboneJS
BackboneJSBackboneJS
BackboneJS
 
Exam View Presentation: JISC Sharing Stories September 2012
Exam View Presentation: JISC Sharing Stories September 2012Exam View Presentation: JISC Sharing Stories September 2012
Exam View Presentation: JISC Sharing Stories September 2012
 
AngularJS
AngularJSAngularJS
AngularJS
 
Workshops
WorkshopsWorkshops
Workshops
 
6421 configuring and troubleshooting win server 2008 network infrastructure
6421   configuring and troubleshooting win server 2008 network infrastructure6421   configuring and troubleshooting win server 2008 network infrastructure
6421 configuring and troubleshooting win server 2008 network infrastructure
 
6421 configuring and troubleshooting win server 2008 network infrastructure
6421   configuring and troubleshooting win server 2008 network infrastructure6421   configuring and troubleshooting win server 2008 network infrastructure
6421 configuring and troubleshooting win server 2008 network infrastructure
 
Sql Server 2014 Course Content
Sql Server 2014 Course ContentSql Server 2014 Course Content
Sql Server 2014 Course Content
 
Leonardo's Notebooks Microsoft Excel Training
Leonardo's Notebooks Microsoft Excel TrainingLeonardo's Notebooks Microsoft Excel Training
Leonardo's Notebooks Microsoft Excel Training
 

More from bestip

Cipt1 implementing cisco unified communications ip telephony part 1
Cipt1   implementing cisco unified communications ip telephony part 1Cipt1   implementing cisco unified communications ip telephony part 1
Cipt1 implementing cisco unified communications ip telephony part 1
bestip
 
Cipt2 implementing cisco unified communications ip telephony part 2
Cipt2   implementing cisco unified communications ip telephony part 2Cipt2   implementing cisco unified communications ip telephony part 2
Cipt2 implementing cisco unified communications ip telephony part 2
bestip
 
6294 a planning and managing windows 7 desktop deployments and environments
6294 a planning and managing windows 7 desktop deployments and environments6294 a planning and managing windows 7 desktop deployments and environments
6294 a planning and managing windows 7 desktop deployments and environments
bestip
 
Lab view daq signal conditioniing
Lab view daq signal conditioniingLab view daq signal conditioniing
Lab view daq signal conditioniing
bestip
 
Lab view instrument control
Lab view instrument controlLab view instrument control
Lab view instrument control
bestip
 
Lab view core 2 outline
Lab view core 2 outlineLab view core 2 outline
Lab view core 2 outline
bestip
 
Lab view core 1 outline
Lab view core 1 outlineLab view core 1 outline
Lab view core 1 outline
bestip
 
Deploying cisco asa firewall features
Deploying cisco asa firewall featuresDeploying cisco asa firewall features
Deploying cisco asa firewall features
bestip
 
6010 java programming version 6
6010 java programming version 66010 java programming version 6
6010 java programming version 6
bestip
 
10264 developing web applications with microsoft visual studio 2010
10264 developing web applications with microsoft visual studio 201010264 developing web applications with microsoft visual studio 2010
10264 developing web applications with microsoft visual studio 2010
bestip
 
10266 developing data access solutions with microsoft visual studio 2010
10266 developing data access solutions with microsoft visual studio 201010266 developing data access solutions with microsoft visual studio 2010
10266 developing data access solutions with microsoft visual studio 2010
bestip
 
7806 java 6 programming essentials using helios eclipse
7806 java 6 programming essentials using helios eclipse7806 java 6 programming essentials using helios eclipse
7806 java 6 programming essentials using helios eclipse
bestip
 
10265 developing data access solutions with microsoft visual studio 2010
10265 developing data access solutions with microsoft visual studio 201010265 developing data access solutions with microsoft visual studio 2010
10265 developing data access solutions with microsoft visual studio 2010
bestip
 
Spf1v10 microsoft windows share point foundation 2010 - level 1
Spf1v10   microsoft windows share point foundation 2010 - level 1Spf1v10   microsoft windows share point foundation 2010 - level 1
Spf1v10 microsoft windows share point foundation 2010 - level 1
bestip
 
10232 designing and developing microsoft share point server 2010 applications
10232   designing and developing microsoft share point server 2010 applications 10232   designing and developing microsoft share point server 2010 applications
10232 designing and developing microsoft share point server 2010 applications
bestip
 
Ceh certified ethical hacker
Ceh   certified ethical hackerCeh   certified ethical hacker
Ceh certified ethical hacker
bestip
 
Network+
Network+Network+
Network+
bestip
 
5178 implementing and maintaining audio visual conferencing and web conferenc...
5178 implementing and maintaining audio visual conferencing and web conferenc...5178 implementing and maintaining audio visual conferencing and web conferenc...
5178 implementing and maintaining audio visual conferencing and web conferenc...
bestip
 
5177 implementing and maintaining instant messaging using microsoft office ...
5177   implementing and maintaining instant messaging using microsoft office ...5177   implementing and maintaining instant messaging using microsoft office ...
5177 implementing and maintaining instant messaging using microsoft office ...
bestip
 
Security+
Security+Security+
Security+
bestip
 

More from bestip (20)

Cipt1 implementing cisco unified communications ip telephony part 1
Cipt1   implementing cisco unified communications ip telephony part 1Cipt1   implementing cisco unified communications ip telephony part 1
Cipt1 implementing cisco unified communications ip telephony part 1
 
Cipt2 implementing cisco unified communications ip telephony part 2
Cipt2   implementing cisco unified communications ip telephony part 2Cipt2   implementing cisco unified communications ip telephony part 2
Cipt2 implementing cisco unified communications ip telephony part 2
 
6294 a planning and managing windows 7 desktop deployments and environments
6294 a planning and managing windows 7 desktop deployments and environments6294 a planning and managing windows 7 desktop deployments and environments
6294 a planning and managing windows 7 desktop deployments and environments
 
Lab view daq signal conditioniing
Lab view daq signal conditioniingLab view daq signal conditioniing
Lab view daq signal conditioniing
 
Lab view instrument control
Lab view instrument controlLab view instrument control
Lab view instrument control
 
Lab view core 2 outline
Lab view core 2 outlineLab view core 2 outline
Lab view core 2 outline
 
Lab view core 1 outline
Lab view core 1 outlineLab view core 1 outline
Lab view core 1 outline
 
Deploying cisco asa firewall features
Deploying cisco asa firewall featuresDeploying cisco asa firewall features
Deploying cisco asa firewall features
 
6010 java programming version 6
6010 java programming version 66010 java programming version 6
6010 java programming version 6
 
10264 developing web applications with microsoft visual studio 2010
10264 developing web applications with microsoft visual studio 201010264 developing web applications with microsoft visual studio 2010
10264 developing web applications with microsoft visual studio 2010
 
10266 developing data access solutions with microsoft visual studio 2010
10266 developing data access solutions with microsoft visual studio 201010266 developing data access solutions with microsoft visual studio 2010
10266 developing data access solutions with microsoft visual studio 2010
 
7806 java 6 programming essentials using helios eclipse
7806 java 6 programming essentials using helios eclipse7806 java 6 programming essentials using helios eclipse
7806 java 6 programming essentials using helios eclipse
 
10265 developing data access solutions with microsoft visual studio 2010
10265 developing data access solutions with microsoft visual studio 201010265 developing data access solutions with microsoft visual studio 2010
10265 developing data access solutions with microsoft visual studio 2010
 
Spf1v10 microsoft windows share point foundation 2010 - level 1
Spf1v10   microsoft windows share point foundation 2010 - level 1Spf1v10   microsoft windows share point foundation 2010 - level 1
Spf1v10 microsoft windows share point foundation 2010 - level 1
 
10232 designing and developing microsoft share point server 2010 applications
10232   designing and developing microsoft share point server 2010 applications 10232   designing and developing microsoft share point server 2010 applications
10232 designing and developing microsoft share point server 2010 applications
 
Ceh certified ethical hacker
Ceh   certified ethical hackerCeh   certified ethical hacker
Ceh certified ethical hacker
 
Network+
Network+Network+
Network+
 
5178 implementing and maintaining audio visual conferencing and web conferenc...
5178 implementing and maintaining audio visual conferencing and web conferenc...5178 implementing and maintaining audio visual conferencing and web conferenc...
5178 implementing and maintaining audio visual conferencing and web conferenc...
 
5177 implementing and maintaining instant messaging using microsoft office ...
5177   implementing and maintaining instant messaging using microsoft office ...5177   implementing and maintaining instant messaging using microsoft office ...
5177 implementing and maintaining instant messaging using microsoft office ...
 
Security+
Security+Security+
Security+
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 

6232 implementing a microsoft sql server 2008 database

  • 1. Implementing a Microsoft SQL Server 2008 Database Course 6232A: Five days; Instructor-Led Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge and skills to implement a Microsoft SQL Server 2008 database. The course focuses on teaching individuals how to use SQL Server 2008 product features and tools related to implementing a database. Audience This course is intended for IT Professionals who administer and maintain SQL Server databases. At Course Completion After completing this course, students will be able to: • An understanding of basic relational database concepts, including: • Logical database design. • Physical database design. • How data is stored in tables (rows and columns). • Data integrity concepts. • Relationships between tables and columns (primary key and foreign key, one-to-one, one-to-many, and many-to-many). Basic knowledge of the Microsoft Windows operating system and its core functionality. For example, how to use Windows • Explorer, open and save files, and what a client/server application interaction means. Prerequisites This course requires that students meet the following prerequisites: Basic knowledge of the Microsoft Windows operating system and its core • functionality. • Working knowledge of Transact-SQL. • Working knowledge of relational databases. • Some experience with database design. Course Outline Module 1: Creating Databases and Database Files The students will learn one of the most fundamental tasks that a database developer must perform, the creation of a database and its major components, such as creating databases, setting database options, creating filegroups, schemas, and database snapshots. Lessons • Lesson 1: Creating Databases • Lesson 2: Creating Filegroups • Lesson 3: Creating Schemas • Lesson 4: Creating Database Snapshots Lab: Creating Databases and Database Files • Exercise 1: (Level 200) Creating a Database • Exercise 2: (Level 200) Creating Schemas Exercise 3: (Level 300) Creating a Database • Snapshot
  • 2. After completing this module, students will be able to: • Create databases • Create filegroups • Create schemas • Create database snapshots Module 2: Creating Data Types and Tables The students will learn about the system-supplied data types in SQL Server 2008. They will learn how to define custom Transact-SQL data types and how to create tables and how to use partitioned tables to organize data into multiple partitions. Lessons • Lesson 1: Creating Data Types • Lesson 2: Creating Tables Lesson 3: Creating Partitioned • Tables Lab: Creating Data Types and Tables • Exercise 1 (Level 200): Creating Data Types Exercise 2 (Level 200): Using New Date and Time Data • Types • Exercise 3 (Level 200): Creating Tables • Exercise 4: (Level 300) Creating Partitioned Tables After completing this module, students will be able to: • Create new data types. • Create new tables. Create partitioned • tables. Module 3: Creating and Tuning Indexes The students will learn how to plan, create, and optimize indexes to attain optimal performance benefits. Lessons • Lesson 1: Planning Indexes • Lesson 2: Creating Indexes Lesson 3: Optimizing • Indexes Lab: Creating and Tuning Indexes Exercise 1: (Level 200) Creating • Indexes • Exercise 2: (Level 300) Tuning Indexes After completing this module, students will be able to: • Plan indexes. • Create indexes. • Optimize indexes. Module 4: Implementing Data Integrity by Using Constraints and Triggers The students will learn about implementing data integrity in SQL Server 2008 by using constraints. They will also implement data integrity by using triggers. Lessons • Lesson 1: Data Integrity Overview • Lesson 2: Implementing Constraints
  • 3. Lesson 3: Implementing Triggers Lab: Implementing Data Integrity by Using Constraints and Triggers • Exercise 1: (Level 200) Creating Constraints • Exercise 2: (Level 200) Disabling Constraints • Exercise 3: (Level 300) Creating Triggers After completing this module, students will be able to: • Describe the options for enforcing data integrity in SQL Server 2008. • Implement data integrity in SQL Server 2008 databases by using constraints. • Implement data integrity in SQL Server 2008 databases by using triggers. Module 5: Using XML The students will learn how to work with XML, including use of the FOR XML clause, the OPENXML function, XQuery expressions, and the xml native data type. They will learn the considerations to be taken into account when creating XML indexes and the syntax used to create the XML indexes. They will also learn what XML schemas and XML schema collections are as well as how to use them to implement typed XML data. Lessons • Lesson 1: Using the XML Data Type • Lesson 2: Retrieving XML by Using FOR XML Lesson 3: Shredding XML by Using • OPENXML • Lesson 4: Introducing XQuery • Lesson 5: Creating XML Indexes • Lesson 6: Implementing XML Schemas Lab: Using XML • Exercise 1: (Level 200) Mapping Relational Data and XML Exercise 2: (Level 200) Storing XML Natively in the • Database • Exercise 3: (Level 300) Using XQuery with XML Methods • Exercise 4: (Level 200) Create XML Indexes • Exercise 5: (Level 300) Implementing XML Schemas After completing this module, students will be able to: • Use the xml data type. • Retrieve XML by using the FOR XML clause. • Shred XML by using the OPENXML function. • Use XQuery expressions. • Create XML indexes. Implement data integrity in SQL Server 2008 databases by using XML • schemas. Module 6: Implementing Views The students will be introduced to the different types of views available in Microsoft SQL Server 2008 which provide a convenient way to access data through a predefined query. Lessons • Lesson 1: Introduction to Views • Lesson 2: Creating and Managing Views Lesson 3: Optimizing Performance by Using • Views
  • 4. Lab: Implementing Views • Exercise 1: (Level 200) Creating Views • Exercise 2: (Level 200) Creating Indexed Views Exercise 3: (Level 200) Creating Partitioned • Views After completing this module, students will be able to: • Describe the purpose of views. • Create and manage views. Explain how to optimize query performance by using • views. Module 7: Implementing Stored Procedures The students will learn the design and implementation of stored procedures to enforce business rules or data consistency, or to modify and maintain existing stored procedures written by other developers. Lessons • Lesson 1: Implementing Stored Procedures Lesson 2: Creating Parameterized Stored • Procedures • Lesson 3: Working With Execution Plans • Lesson 4: Handling Errors Lab: Implementing Stored Procedures • Exercise 1: (Level 300) Creating Stored Procedures Exercise 2: (Level 300) Working with Execution • Plans After completing this module, students will be able to: • Implement stored procedures. • Create parameterized stored procedures. • Work with execution plans. • Handle errors in stored procedures. Module 8: Implementing Functions The students will learn the design and implementation of user-defined functions that enforce business rules or data consistency, or to modify and maintain existing functions written by other developers. Lessons • Lesson 1: Creating and Using Functions • Lesson 2: Working with Functions • Lesson 3: Controlling Execution Context Lab: Implementing Functions • Exercise 1: (Level 300) Creating Functions • Exercise 2: (Level 300) Controlling Execution Context After completing this module, students will be able to: • Create and use functions. • Work with functions. • Control execution context. Module 9: Implementing Managed Code in the Database The students will learn to use managed code to implement database objects, such as stored procedures, user-defined data types, user-defined functions, and triggers.
  • 5. Lessons • Lesson 1: Introduction to the SQL Server Common Language Runtime • Lesson 2: Importing and Configuring Assemblies • Lesson 3: Creating Managed Database Objects Lab: Implementing Managed Code in the Database • Exercise 1: (Level 300) Importing an Assembly Exercise 2: (Level 300) Creating Managed Database • Objects After completing this module, students will be able to: Identify appropriate scenarios for managed code in the • database. • Import and configure assemblies. • Create managed database objects. Module 10: Managing Transactions and Locks The students will learn to use transactions and SQL Server locking mechanisms to meet the performance and data integrity requirements of their applications. Lessons • Lesson 1: Overview of Transactions and Locks • Lesson 2: Managing Transactions • Lesson 3: Understanding SQL Server Locking Architecture • Lesson 4: Managing Locks Lab: Managing Transactions and Locks • Exercise 1: (Level 300) Using Transactions • Exercise 2: (Level 300) Managing Locks • Exercise 3: (Level 300) Using Partition Locking After completing this module, students will be able to: • Describe how SQL Server 2008 transactions use locks. • Execute and cancel a transaction. • Describe concurrency issues and SQL Server 2008 locking mechanisms. • Manage locks. Module 11: Using Service Broker The students will learn to use Service Broker to create secure, reliable, and scalable applications. Lessons • Lesson 1: Service Broker Overview • Lesson 2: Creating Service Broker Objects Lesson 3: Sending and Receiving • Messages Lab: Using Service Broker • Exercise 1: (Level 300) Creating Service Broker Objects • Exercise 2: (Level 300) Implementing the Initiating Service • Exercise 3: (Level 300) Implementing the Target Service After completing this module, students will be able to: • Describe Service Broker functionality and architecture. • Create Service Broker objects.
  • 6. Send and receive Service Broker messages.