MicroAssist logo
Contact us: (512) 794-8440  |  info@microassist.com
  • Home
  • Custom E-Learning
    • E-Learning Overview
    • Courseware Development
    • Learning Management Systems
    • E-Learning Case Studies
      • Texas Electronic Death Registrar
      • USDA Meal Re-Imbursement Program
      • Vaccine Education
    • Examples of Our Work
      • Lessons
      • Visual Models
      • Interactions
      • Simulations
      • Questions
      • Accessibility
      • Storytelling
    • Audio & Video
      • Audio & Video
      • VR Photography
    • Medical Illustration
    • The Learning Dispatch
  • Classroom Training
    • Classroom Training Overview
      • Our Classrooms
      • SQL Server Training
      • Crystal Reports Training
    • Course List
      • Pricing Inquiry
    • Course Schedule
    • Professional Development
    • Webinar Schedule
    • Courseware Development
    • Classroom Rental
    • Training FAQ
    • Client Services
      • Student Files
  • Application Development
    • Application Development
      • VPAT
  • Resource Center
    • Ask the Experts
    • E-Learning Resources
      • Converting ILT to WBT
      • Instructional Design Interview
      • Debby Kalk Instructional Design Interview
      • MicroAssist Storyboard Template
    • Learning Center
      • ILT Newsletter Archive
      • Tips & Traps
      • Cascading Style Sheets
      • Managing Email Effectively
      • Excel 2007 Graphs
      • Best practices for IT training
      • Microsoft Office 2007
      • Crystal Reports Tips
      • Microsoft Office 2010
      • Office 2010 Migration
    • Government Solutions
      • Government Clients
      • Government DBITS
      • Government E-Learning
      • Government ILT Pricing
      • Web Services
    • Sitemap
    • Screen Backgrounds
  • About MicroAssist
    • History
    • Team
    • Career Opportunities
      • Why MicroAssist?
    • Community Involvement
    • Clients
    • Client Testimonials
    • Client Successes
      • TXDFPS E-Learning Case Study
      • TXDPS Case Study
      • FOL Application Development
      • DARS Training Program
      • TCEQ Custom Training
    • News
      • Front Page
      • Custom E-Learning
      • Classroom Training
      • Technology services
      • Resource Center
  • Blog
  • Contact Us
    • Information Request Form
    • Office Location
Home » Classroom Training » Course List

Writing Queries Using Microsoft SQL Server 2008 Transact- SQL

Course Specifications:

Courseware: Writing Queries Using Microsoft SQL Server 2008 Transact- SQL

Software: Microsoft SQL Server 2008

Course length: 3 days

Course times: 8:30 a.m. - 4:30 p.m.

Course Description:

This 3-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server 2008.

Course Objective:

After completing this course, students will be able to:

•Describe the uses of and ways to execute the Transact-SQL language.

•Use querying tool.

•Write SELECT queries to retrieve data.

•Group and summarize data by using Transact-SQL.

•Join data from multiple tables.

•Write queries that retrieve and modify data by using subqueries.

•Modify data in tables.

•Query text fields with full-text search.

•Describe how to create programming objects.

•Use various techniques when working with complex queries.

Target Student:

This course is intended for SQL Server database administrators, implementers, system engineers, and developers who are responsible for writing queries.

Delivery Method:

Instructor led, group-paced, classroom-delivery learning model with structured hands-on activities. Each student is provided with a computer and a Manual. The manual is the student's to keep and makes an excellent reference guide.

Course Content:

Module 1: Getting Started with Databases and Transact- SQL in SQL Server 2008

The student will be introduced to how client/server architecture works, and examine the various database and business tasks that can be performed by using the components of SQL Server 2008. The student will also be introduced to SQL Server database concepts such as relational databases, normalization, and database objects. In addition, the student will learn how to use T-SQL to query databases and generate reports.

Lessons

  1. Overview of SQL Server 2008
  2. Overview of SQL Server Databases
  3. Overview and Syntax Elements of T-SQL
  4. Working with T-SQL Scripts
  5. Using T-SQL Querying Tools

Lab: Using SQL Server Management Studio and SQLCMD

  1. Exploring the Components and Executing Queries in SQL Server Management Studio
  2. Starting and Using SQLCMD
  3. Generating a Report from a SQL Server Database Using Microsoft Office Excel

After completing this module, students will be able to:

  1. Describe the architecture and components of SQL Server 2008.
  2. Describe the structure of a SQL Server database.
  3. Explain the basics of the SQL language.
  4. Describe the syntax elements of T-SQL.
  5. Explain how to manage T-SQL scripts.
  6. Use T-SQL querying tools to query SQL Server 2008 databases.

Module 2: Querying and Filtering Data

The students will be introduced to the basic Transact-SQL (T-SQL) statements that are used for writing queries, filtering data, and formatting result sets.

Lessons

  1. Using the SELECT Statement
  2. Filtering Data
  3. Working with NULL Values
  4. Formatting Result Sets
  5. Performance Considerations for Writing Queries

Lab: Querying and Filtering Data

  1. Retrieving Data by Using the SELECT Statement
  2. Filtering Data by Using Different Search Conditions
  3. Using Functions to Work with NULL Values
  4. Formatting Result Sets

After completing this module, students will be able to:

  1. Retrieve data by using the SELECT statement.
  2. Filter data by using different search conditions.
  3. Explain how to work with NULL values.
  4. Format result sets.
  5. Describe the performance considerations that affect data retrieval.

Module 3: Grouping and Summarizing Data

The students will learn to group and summarize data when generating reports in Microsoft SQL Server 2008 by using aggregate functions and the COMPUTE clause.

Lessons

  1. Summarizing Data by Using Aggregate Functions
  2. Summarizing Grouped Data
  3. Ranking Grouped Data
  4. Creating Crosstab Queries

Lab: Grouping and Summarizing Data

  1. Summarizing Data by Using Aggregate Functions
  2. Summarizing Grouped Data
  3. Ranking Grouped Data
  4. Creating Crosstab Queries

After completing this module, students will be able to:

  1. Summarize data by using aggregate functions.
  2. Summarize grouped data by using the GROUP BY and COMPUTE clauses.
  3. Rank grouped data.
  4. Create cross-tabulation queries by using the PIVOT and UNPIVOT clauses.

Module 4: Joining Data from Multiple Tables

The students will learn to write joins to query multiple tables, as well as limiting and combining result sets.

Lessons

  1. Querying Multiple Tables by Using Joins
  2. Applying Joins for Typical Reporting Needs
  3. Combining and Limiting Result Set

Lab: Joining Data from Multiple Tables

  1. Querying Multiple Tables by Using Joins
  2. Applying Joins for Typical Reporting Needs
  3. Combining and Limiting Result Sets

After completing this module, students will be able to:

  1. Query multiple tables by using joins.
  2. Apply joins for typical reporting needs.
  3. Combine and limit result sets.

Module 5: Working with Subqueries

The students will be introduced to basic and correlated subqueries and how these compare with joins and temporary tables. The students will also be introduced to using common table expressions in queries.

Lessons

  1. Writing Basic Subqueries
  2. Writing Correlated Subqueries
  3. Comparing Subqueries with Joins and Temporary Tables
  4. Using Common Table Expressions

Lab: Working with Subqueries

  1. Writing Basic Subqueries
  2. Writing Correlated Subqueries
  3. Comparing Subqueries with Joins and Temporary Tables
  4. Using Common Table Expressions

After completing this module, students will be able to:

  1. Write basic subqueries.
  2. Write correlated subqueries.
  3. Compare subqueries with joins and temporary tables.
  4. Use common table expressions in queries.

Module 6: Modifying Data in Tables

The students will be able to modify the data in tables by using the INSERT, DELETE, and UPDATE statements. In addition, students will examine how transactions work in a database, the importance of transaction isolation levels, and how to manage transactions.

Lessons

  1. Inserting Data into Tables
  2. Deleting Data from Tables
  3. Updating Data in Tables
  4. Overview of Transactions

Lab: Modifying Data in Tables

  1. Inserting Data into Tables
  2. Deleting Data from Tables
  3. Updating Data in Tables
  4. Working with Transactions

After completing this module, students will be able to:

  1. Insert data into tables.
  2. Delete data from tables.
  3. Update data in tables.
  4. Describe transactions.

Module 7: Querying Metadata, XML, and Full-Text Indexes

The students will learn to query semi-structured and unstructured data. The students will also learn how SQL Server 2008 handles XML data and will query XML data. The students will also be introduced to full-text indexing in SQL Server 2008.

Lessons

  1. Querying Metadata
  2. Overview of XML
  3. Querying XML Data
  4. Overview of Full-Text Indexes
  5. Querying Full-Text Indexes

Lab: Querying Metadata, XML, and Full-Text Indexes

  1. Querying Metadata
  2. Querying XML Data
  3. Creating and Querying Full-Text Indexes

After completing this module, students will be able to:

  1. Query metadata.
  2. Describe the functionality of XML.
  3. Query XML data.
  4. Describe the functionality of full-text indexes.
  5. Query full-text indexes.

Module 8: Using Programming Objects for Data Retrieval

The students will be introduced to user-defined functions and executing various kinds of queries by using user-defined functions. The students will be introduced to SQL Server views that encapsulate data and present users with limited and relevant information. In addition, the students will be introduced to SQL Server stored procedures and the functionalities of the various programming objects. The students will learn how to perform distributed queries and how SQL Server works with heterogeneous data such as databases, spreadsheets, and other servers.

Lessons

  1. Overview of Views
  2. Overview of User-Defined Functions
  3. Overview of Stored Procedures
  4. Overview of Triggers
  5. Writing Distributed Queries

Lab: Using Programming Objects for Data Retrieval

  1. Creating Views
  2. Creating User-Defined Functions
  3. Creating Stored Procedures
  4. Writing Distributed Queries

After completing this module, students will be able to:

  1. Encapsulate queries by using views.
  2. Encapsulate expressions by using user-defined functions.
  3. Explain how stored procedures encapsulate T-SQL logic.
  4. Define triggers, types of triggers, create a trigger.
  5. Write distributed queries.

Module 9: Using Advanced Querying Techniques

The students will be introduced to best practices for querying complex data. The students will also examine how to query complex table structures such as data stored in hierarchies and self-referencing tables. The students will analyze the recommended guidelines for executing queries and how to optimize query performance.

Lessons

  1. Considerations for Querying Data
  2. Working with Data Types
  3. Cursors and Set-Based Queries
  4. Dynamic SQL
  5. Maintaining Query Files

Lab: Using Advanced Querying Techniques

  1. Using Execution Plans
  2. Converting Data Types
  3. Implementing a Hierarchy
  4. Using Cursors and Set-Based Queries

After completing this module, students will be able to:

  1. Explain the recommendations for querying complex data.
  2. Query complex table structures.
  3. Write efficient queries.
  4. Use various techniques when working with complex queries.
  5. Maintain query files.

Ready to register? Visit our Pricing Inquiry, Course Registration Form, or Virtual Training site.Visit our Pricing Inquiry Form Fill out a Registration Form Visit our Virtual Class catalog to register for virtual instructor-led training

 

Have questions?

Meet Colin. Colin Cairns is our Instructor-Led Training Evangelist. Colin has a broad knowledge of technology from a career working with semi-conductor companies, hardware product development, to Fortune 100 IT organizations, and has worked on projects for NASA, Microsoft, Dell, Intel, and more.

Colin can take you through the training decision-making process; he'll help you identify what training is right for you, the best method of delivery, and will assist you in every step of the process. 

e-mail colin

Footer

  • Home
  • Custom E-Learning
  • Classroom Training
  • Technology Services
  • Resource Center
  • About MicroAssist
  • Contact Us
  • Sitemap
  • Privacy
  • Login
© 2010 MicroAssist. All Rights Reserved. RSS feed