Learn: in:
» back to Search Results

Course rating of 0 Vendor rating of 5


Upon completion you will:Create databases & database files; Create data types & tables; Use XML-related features in Microsoft SQL Server 2008; Plan, create, & optimize indexes; Implement views; Implement stored procedures; Implement functions & much more


 
Course Outline
Who should attend This course is intended for IT Professionals who administer and maintain SQL Server databases.

Performance objectives After completing this course, students will be able to:
  • Create databases and database files.
  • Create data types and tables.
  • Use XML-related features in Microsoft SQL Server 2008.
  • Plan, create, and optimize indexes.
  • Implement data integrity in Microsoft SQL Server 2008 databases by using constraints.
  • Implement data integrity in Microsoft SQL Server 2008 by using triggers.
  • Implement views.
  • Implement stored procedures.
  • Implement functions.
  • Implement managed code in the database.
  • Manage transactions and locks.
  • Use Service Broker to build a messaging-based solution.
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.

Additional Details
Pre-Requisites

Before attending this course, students must have: * 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.

Certificates offered

Certificate of completion


Cancellation Policy
We require 16 calendar days notice to reschedule or cancel any registration. Failure to provide the required notification will result in 100% charge of the course. If a student does not attend a scheduled course without prior notification it will result in full forfeiture of the funds and no reschedule will be allowed. Within the required notification period, only student substitutions will be permitted.

Reschedules are permitted at anytime with 16 or more calendar days notice. Enrollments must be rescheduled within six months of the cancel date or funds on account will be forfeited.
Map & Reviews
Global Knowledge
[ View Provider's Profile ]

Reviews
 

This course has not yet been rated by one of our members.

If you have taken a course through this vendor please log into your account and leave feedback for this vendor. You will be helping ensure our members get directed to the best training facilities.

Here are some reviews of the training vendor.
- do we get a certifiacate for completing the courseÉ - although the instructor did give us excercises to do I would have liked a few more - almost like a test, so that I made sure I retained and understood what was taught. I`m a learn to do by doing person and like the instrutor lead courses so I can have someone there to explain in my terms how things work. I`ll have to really use the online excercises to make sure Ì am confident when I need to do something in Excel.
Reviewed by 2012
Should be time allocated for questions and answer
Reviewed by 2012
The instructor was excellent as was the hands-on learning approach. The only thing I took issue with was the fact that there were a lot of bilingual persons taking the course and they tended to ask questions in French, during this English class. The instructor was trying very hard to explain everything in both languages, but I felt that these students should have requested a French-speaking classroom setting if they wanted to speak French.
Reviewed by 2012
Very professional. Facility clean and comfortable.
Reviewed by 2012
For the cost of this course, a hard copy of the course handout should be provided as the classes follows the handout word for word.
Reviewed by 2012
The facilities at Global Knowledge were great. The Instructor was very knowlegable and made it easy to learn the material. It was a very good experience:)
Reviewed by 2012
Note: We had 2 different trainers during this 3 day course. Course: Terminology should reflect North America and be consistent with our business lingo.
Reviewed by 2012
Found the course very informative. I had little exposure to Sharepoint and learned a number of things I didn't know. Plan to take the next level of training
Reviewed by 2011
A charged mannul would be provided for students to make notes whereever they think instructions are important as reminders
Reviewed by 2011
The course is so expensive to be payed by oneself. In almost all the others participants their companies pay the fee.
Reviewed by 2011
No course books were provided for us to take.
Reviewed by 2011
Course was very detailed but more time would be helpful during workshops. An additional day would help lessen the course load.
Reviewed by 2011
should have discuss some case studies,,overall A+
Reviewed by 2011
Our instructor was very knowlegable and he provided excellent real life stories.
Reviewed by 2011
The course was very relevant. I was able to apply the knowledge I aquired in the course to my job on the very next day. The only complaint I have is with the temperature of the room. It was freezing! Students has to wear a jacket or sweater. We were told the temp gage was shared with another classroom that was quite warm so they had turned the temp very low causing our room to be very uncomfortable.
Reviewed by 2011
Given the cost of the course, the hardcopy of the manual should have been provided. It would have been useful to make notes alongside the material as we went along.
Reviewed by 2011
I am very disappointed with the handouts. I was told I could go online and download a copy of the manual, the problem is that I would like the printed copy of the manual. I chatted online with one of your technitian who was unable to help me. Then I was told someone would contact me by phone to help me. That never happened. When taking a training course, a person EXPECTS to leave the course with ALL the material.
Reviewed by 2011
Great course provider, keep it on your roaster
Reviewed by 2011
Course content and labs were very good, everything worked as expected.
Reviewed by 2011
I really enjoyed this course and was surpised how ell everything was run...enjoyed the instructer very much (Par) and would like to take an other course with him. I wish we could have taken the work book home with us though!!!
Reviewed by 2010

This course currently does not have any dates scheduled. Please call 1-877-313-8881 to enquire about future dates.

This page has been viewed 54 times.