Querying Data with Transact SQL

Size: px
Start display at page:

Download "Querying Data with Transact SQL"

Transcription

1 Querying Data with Transact SQL Curse Cde: Certificatin Exam: Duratin: 5 Days Certificatin Track: MCSA: SQL 2016 Database Develpment Frmat: Classrm Level: 200 Abut this curse: This curse is designed t intrduce students t Transact-SQL. It is designed in such a way that the first three days can be taught as a curse t students requiring the knwledge fr ther curses in the SQL Server curriculum. Days 4 & 5 teach the remaining skills required t take exam Audience: The main purpse f the curse is t give students a gd understanding f the Transact-SQL language which is used by all SQL Server-related disciplines; namely, Database Administratin, Database Develpment and Business Intelligence. As such, the primary target audience fr this curse is: Database Administratrs, Database Develpers and BI prfessinals. At Curse Cmpletin After cmpleting this curse, students will be able t: Describe key capabilities and cmpnents f SQL Server Describe T-SQL, sets, and predicate lgic. Write a single table SELECT statement. Write a multi-table SELECT statement. Write SELECT statements with filtering and srting. Describe hw SQL Server uses data types. Write DML statements. Write queries that use built-in functins. Write queries that aggregate data. Write subqueries. Create and implement views and table-valued functins. Use set peratrs t cmbine query results. Write queries that use windw ranking, ffset, and aggregate functins. Transfrm data by implementing pivt, unpivt, rllup and cube. Create and implement stred prcedures. Add prgramming cnstructs such as variables, cnditins, and lps t T-SQL cde.

2 Prerequisites Basic knwledge f the Micrsft Windws perating system and its cre functinality. Wrking knwledge f relatinal databases. Student Materials The student kit includes a cmprehensive wrkbk and ther necessary materials fr this class. Curse Outline: Mdule 1: Intrductin t Micrsft SQL Server 2016 This mdule intrduces SQL Server, the versins f SQL Server, including clud versins, and hw t cnnect t SQL Server using SQL Server Management Studi. Lessns The Basic Architecture f SQL Server SQL Server Editins and Versins Getting Started with SQL Server Management Studi Lab 1: Wrking with SQL Server 2016 Tls Wrking with SQL Server Management Studi Creating and Organizing T-SQL Scripts Using Bks Online After cmpleting this mdule, students will be able t: Describe relatinal databases and Transact-SQL queries. Describe the n-premise and clud-based editins and versins f SQL Server. Describe hw t use SQL Server Management Studi (SSMS) t cnnect t an instance f SQL Server, explre the databases cntained in the instance, and wrk with script files that cntain T-SQL queries. Mdule 2: Intrductin t T-SQL Querying This mdule describes the elements f T-SQL and their rle in writing queries. Describe the use f sets in SQL Server. Describe the use f predicate lgic in SQL Server. Describe the lgical rder f peratins in SELECT statements. Lessns Intrducing T-SQL Understanding Sets Understanding Predicate Lgic Understanding the Lgical Order f Operatins in SELECT statements Lab 2: Intrductin t Transact-SQL Querying

3 Executing Basic SELECT Statements Executing Queries that Filter Data using Predicates Executing Queries That Srt Data Using ORDER BY After cmpleting this mdule, students will be able t: Describe the rle f T-SQL in writing SELECT statements. Describe the elements f the T-SQL language and which elements will be useful in writing queries. Describe the cncepts f the set thery, ne f the mathematical underpinnings f relatinal databases, and t help yu apply it t hw yu think abut querying SQL Server Describe predicate lgic and examine its applicatin t querying SQL Server. Explain the elements f a SELECT statement, delineate the rder in which the elements are evaluated, and then apply this understanding t a practical apprach t writing queries. Mdule 3: Writing SELECT Queries This mdule intrduces the fundamentals f the SELECT statement, fcusing n queries against a single table. Lessns Writing Simple SELECT Statements Eliminating Duplicates with DISTINCT Using Clumn and Table Aliases Writing Simple CASE Expressins Lab 3: Writing Basic SELECT Statements Writing Simple SELECT Statements Eliminating Duplicates Using DISTINCT Using Clumn and Table Aliases Using a Simple CASE Expressin After cmpleting this mdule, students will be able t: Describe the structure and frmat f the SELECT statement, as well as enhancements that will add functinality and readability t yur queries Describe hw t eliminate duplicates using the DISTINCT clause Describe the use f clumn and table aliases Understand and use CASE expressins

4 Mdule 4: Querying Multiple Tables This mdule describes hw t write queries that cmbine data frm multiple surces in Micrsft SQL Server Lessns Understanding Jins Querying with Inner Jins Querying with Outer Jins Querying with Crss Jins and Self Jins Lab 4: Querying Multiple Tables Writing Queries that use Inner Jins Writing Queries that use Multiple-Table Inner Jins Writing Queries that use Self-Jins Writing Queries that use Outer Jins Writing Queries that use Crss Jins After cmpleting this mdule, students will be able t: Explain the fundamentals f jins in SQL Server 2016 Write inner jin queries Write queries that use uter jins Use additinal jin types Mdule 5: Srting and Filtering Data This mdule describes hw t implement srting and filtering. Lessns Srting Data Filtering Data with Predicates Filtering with the TOP and OFFSET-FETCH Optins Wrking with Unknwn Values Lab 5: Srting and Filtering Data Writing Queries that Filter Data using a WHERE Clause Writing Queries that Srt Data Using an ORDER BY Clause Writing Queries that Filter Data Using the TOP Optin After cmpleting this mdule, students will be able t: Explain hw t add an ORDER BY clause t yur queries t cntrl the rder f rws displayed in yur query's utput

5 Explain hw t cnstruct WHERE clauses t filter ut rws that d nt match the predicate. Explain hw t limit ranges f rws in the SELECT clause using a TOP ptin. Explain hw t limit ranges f rws using the OFFSET-FETCH ptin f an ORDER BY clause. Explain hw three-valued lgic accunts fr unknwn and missing values, hw SQL Server uses NULL t mark missing values, and hw t test fr NULL in yur queries. Mdule 6: Wrking with SQL Server 2016 Data Types This mdule intrduces the data types SQL Server uses t stre data. Lessns Intrducing SQL Server 2016 Data Types Wrking with Character Data Wrking with Date and Time Data Lab 6: Wrking with SQL Server 2016 Data Types Writing Queries that Return Date and Time Data Writing Queries that use Date and Time Functins Writing Queries That Return Character Data Writing Queries That Return Character Functins After cmpleting this mdule, students will be able t: Explre many f the data types SQL Server uses t stre data and hw data types are cnverted between types Explain the SQL Server character-based data types, hw character cmparisns wrk, and sme cmmn functins yu may find useful in yur queries Describe data types that are used t stre tempral data, hw t enter dates and times s they will be prperly parsed by SQL Server, and hw t manipulate dates and times with built-in functins. Mdule 7: Using DML t Mdify Data This mdule describes hw t create DML queries, and why yu wuld want t. Lessns Inserting Data Mdifying and Deleting Data Lab 7: Using DML t Mdify Data Inserting Data Updating and Deleting Data

6 After cmpleting this mdule, students will be able t: Use INSERT and SELECT INTO statements Use UPDATE, MERGE, DELETE, and TRUNCATE. Mdule 8: Using Built-In Functins This mdule intrduces sme f the many built in functins in SQL Server Lessns Writing Queries with Built-In Functins Using Cnversin Functins Using Lgical Functins Using Functins t Wrk with NULL Lab 8: Using Built-In Functins Writing Queries That Use Cnversin Functins Writing Queries that use Lgical Functins Writing Queries that Test fr Nullability After cmpleting this mdule, students will be able t: Describe the types f functins prvided by SQL Server, and then fcus n wrking with scalar functins Explain hw t explicitly cnvert data between types using several SQL Server functins Describe hw t use lgical functins that evaluate an expressin and return a scalar result. Describe additinal functins fr wrking with NULL Mdule 9: Gruping and Aggregating Data This mdule describes hw t use aggregate functins. Lessns Using Aggregate Functins Using the GROUP BY Clause Filtering Grups with HAVING Lab 9: Gruping and Aggregating Data Writing Queries That Use the GROUP BY Clause Writing Queries that Use Aggregate Functins Writing Queries that Use Distinct Aggregate Functins Writing Queries that Filter Grups with the HAVING Clause After cmpleting this mdule, students will be able t: Describe the built-in aggregate functin in SQL Server and write queries using it. Write queries that separate rws using the GROUP BY clause.

7 Write queries that use the HAVING clause t filter grups. Mdule 10: Using Subqueries This mdule describes several types f subquery and hw and when t use them. Lessns Writing Self-Cntained Subqueries Writing Crrelated Subqueries Using the EXISTS Predicate with Subqueries Lab 10: Using Subqueries Writing Queries That Use Self-Cntained Subqueries Writing Queries That Use Scalar and Multi-Result Subqueries Writing Queries That Use Crrelated Subqueries and an EXISTS Clause After cmpleting this mdule, students will be able t: Describe where subqueries may be used in a SELECT statement. Write queries that use crrelated subqueries in a SELECT statement Write queries that use EXISTS predicates in a WHERE clause t test fr the existence f qualifying rws Use the EXISTS predicate t efficiently check fr the existence f rws in a subquery. Mdule 11: Using Table Expressins Previusly in this curse, yu learned abut using subqueries as an expressin that returned results t an uter calling query. Like subqueries, table expressins are query expressins, but table expressins extend this idea by allwing yu t name them and t wrk with their results as yu wuld wrk with data in any valid relatinal table. Micrsft SQL Server 2016 supprts fur types f table expressins: derived tables, cmmn table expressin (CTEs), views, and inline table-valued functins (TVFs). In this mdule, yu will learn t wrk with these frms f table expressins and learn hw t use them t help create a mdular apprach t writing queries. Lessns Using Views Using Inline Table-Valued Functins Using Derived Tables Using Cmmn Table Expressins Lab 11: Using Table Expressins Writing Queries That Use Views Writing Queries That Use Derived Tables Writing Queries That Use Cmmn Table Expressins (CTEs) Writing Queries That Sue Inline Table-Valued Expressins

8 After cmpleting this mdule, students will be able t: Write queries that return results frm views. Use the CREATE FUNCTION statement t create simple inline TVFs. Write queries that create and retrieve results frm derived tables. Write queries that create CTEs and return results frm the table expressin. Mdule 12: Using Set Operatrs This mdule intrduces hw t use the set peratrs UNION, INTERSECT, and EXCEPT t cmpare rws between tw input sets. Lessns Writing Queries with the UNION peratr Using EXCEPT and INTERSECT Using APPLY Lab 12: Using Set Operatrs Writing Queries That Use UNION Set Operatrs and UNION ALL Writing Queries That Use CROSS APPLY and OUTER APPLY Operatrs Writing Queries That Use the EXCEPT and INTERSECT Operatrs After cmpleting this mdule, students will be able t: Write queries that use UNION t cmbine input sets. Write queries that use UNION ALL t cmbine input sets Write queries that use the EXCEPT peratr t return nly rws in ne set but nt anther. Write queries that use the INTERSECT peratr t return nly rws that are present in bth sets Write queries using the CROSS APPLY peratr. Write queries using the OUTER APPLY peratr Mdule 13: Using Windws Ranking, Offset, and Aggregate Functins This mdule describes the benefits t using windw functins. Restrict windw functins t rws defined in an OVER clause, including partitins and frames. Write queries that use windw functins t perate n a windw f rws and return ranking, aggregatin, and ffset cmparisn results. Lessns Creating Windws with OVER Explring Windw Functins Lab 13: Using Windws Ranking, Offset, and Aggregate functins

9 Writing Queries that use Ranking Functins Writing Queries that use Offset Functins Writing Queries that use Windw Aggregate Functins After cmpleting this mdule, students will be able t: Describe the T-SQL cmpnents used t define windws, and the relatinships between them. Write queries that use the OVER clause, with partitining, rdering, and framing t define windws Write queries that use windw aggregate functins. Write queries that use windw ranking functins. Write queries that use windw ffset functins Mdule 14: Pivting and Gruping Sets This mdule describes write queries that pivt and unpivt result sets. Write queries that specify multiple grupings with gruping sets. Lessns Writing Queries with PIVOT and UNPIVOT Wrking with Gruping Sets Lab 14: Pivting and Gruping Sets Writing Queries that use the PIVOT Operatr Writing Queries that use the UNPIVOT Operatr Writing Queries that use the GROUPING SETS CUBE and ROLLUP Subclauses After cmpleting this mdule, students will be able t: Describe hw pivting data can be used in T-SQL queries. Write queries that pivt data frm rws t clumns using the PIVOT peratr. Write queries that unpivt data frm clumns back t rws using the UNPIVOT peratr. Write queries using the GROUPING SETS subclause. Write queries that use ROLLUP AND CUBE. Write queries that use the GROUPING_ID functin. Mdule 15: Executing Stred Prcedures This mdule describes hw t return results by executing stred prcedures. Pass parameters t prcedures. Create simple stred prcedures that encapsulate a SELECT statement. Cnstruct and execute dynamic SQL with EXEC and sp_executesql.

10 Lessns Querying Data with Stred Prcedures Passing Parameters t Stred prcedures Creating Simple Stred Prcedures Wrking with Dynamic SQL Lab 15: Executing Stred Prcedures Using the EXECUTE statement t Invke Stred Prcedures Passing Parameters t Stred prcedures Executing System Stred Prcedures After cmpleting this mdule, students will be able t: Describe stred prcedures and their use. Write T-SQL statements that execute stred prcedures t return data. Write EXECUTE statements that pass input parameters t stred prcedures. Write T-SQL batches that prepare utput parameters and execute stred prcedures. Use the CREATE PROCEDURE statement t write a stred prcedure. Create a stred prcedure that accepts input parameters. Describe hw T-SQL can be dynamically cnstructed. Write queries that use dynamic SQL. Mdule 16: Prgramming with T-SQL This mdule describes hw t enhance yur T-SQL cde with prgramming elements. Lessns T-SQL Prgramming Elements Cntrlling Prgram Flw Lab 16: Prgramming with T-SQL Declaring Variables and Delimiting Batches Using Cntrl-Of-Flw Elements Using Variables in a Dynamic SQL Statement Using Synnyms After cmpleting this mdule, students will be able t: Describe hw Micrsft SQL Server treats cllectins f statements as batches. Create and submit batches f T-SQL cde fr executin by SQL Server. Describe hw SQL Server stres temprary bjects as variables. Write cde that declares and assigns variables. Create and invke synnyms Describe the cntrl-f-flw elements in T-SQL. Write T-SQL cde using IF...ELSE blcks.

11 Write T-SQL cde that uses WHILE. Mdule 17: Implementing Errr Handling This mdule intrduces errr handling fr T-SQL. Lessns Implementing T-SQL errr handling Implementing structured exceptin handling Lab 17: Implementing Errr Handling Redirecting errrs with TRY/CATCH Using THROW t pass an errr message back t a client After cmpleting this mdule, students will be able t: Implement T-SQL errr handling. Implement structured exceptin handling. Mdule 18: Implementing Transactins This mdule describes hw t implement transactins. Lessns Transactins and the database engines Cntrlling transactins Lab 18: Implementing Transactins Cntrlling transactins with BEGIN, COMMIT, and ROLLBACK Adding errr handling t a CATCH blck After cmpleting this mdule, students will be able t: Describe transactins and the differences between batches and transactins. Describe batches and hw they are handled by SQL Server. Create and manage transactins with transactin cntrl language (TCL) statements. Use SET XACT_ABORT t define SQL Servers handling f transactins utside TRY/CATCH blcks.

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL 20761B; 5 Days; Instructor-led Course Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can

More information

Course Outline. Querying Data with Transact-SQL Course 20761B: 5 days Instructor Led

Course Outline. Querying Data with Transact-SQL Course 20761B: 5 days Instructor Led Querying Data with Transact-SQL Course 20761B: 5 days Instructor Led About this course This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Course 20761C 5 Days Instructor-led, Hands on Course Information The main purpose of the course is to give students a good understanding of the Transact- SQL language which

More information

20761B: QUERYING DATA WITH TRANSACT-SQL

20761B: QUERYING DATA WITH TRANSACT-SQL ABOUT THIS COURSE This 5 day course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL General Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students

More information

Duration Level Technology Delivery Method Training Credits. Classroom ILT 5 Days Intermediate SQL Server

Duration Level Technology Delivery Method Training Credits. Classroom ILT 5 Days Intermediate SQL Server NE-20761C Querying with Transact-SQL Summary Duration Level Technology Delivery Method Training Credits Classroom ILT 5 Days Intermediate SQL Virtual ILT On Demand SATV Introduction This course is designed

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Duration: 5 Days Course Code: M20761 Overview: This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can

More information

20761C: Querying Data with Transact-SQL

20761C: Querying Data with Transact-SQL 20761C: Querying Data with Transact-SQL Course Details Course Code: Duration: Notes: 20761C 5 days This course syllabus should be used to determine whether the course is appropriate for the students, based

More information

Implementing a Data Warehouse with Microsoft SQL Server

Implementing a Data Warehouse with Microsoft SQL Server Implementing a Data Warehuse with Micrsft SQL Server Implementing a Data Warehuse with Micrsft SQL Server Curse Cde: 20463 Certificatin Exam: 70-463 Duratin: 5 Days Certificatin Track: MCSA: SQL Server

More information

Implementing a SQL Data Warehouse

Implementing a SQL Data Warehouse Implementing a SQL Data Warehuse Implementing a SQL Data Warehuse Curse Cde: 20767 Certificatin Exam: 70-767 Duratin: 5 Days Certificatin Track: MCSA: SQL 2016 BI Develpment Frmat: Classrm Level: 300 Abut

More information

MS_20761 Querying Data with Transact-SQL

MS_20761 Querying Data with Transact-SQL Querying Data with Transact-SQL www.ked.com.mx Av. Revolución No. 374 Col. San Pedro de los Pinos, C.P. 03800, México, CDMX. Tel/Fax: 52785560 Por favor no imprimas este documento si no es necesario. About

More information

"Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary

Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary Course Summary Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Course Code: M20761 Vendor: Microsoft Course Overview Duration: 5 RRP: 2,177 Querying Data with Transact-SQL Overview This course is designed to introduce students to Transact-SQL. It is designed in such

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Código del curso: 20761 Duración: 5 días Acerca de este curso This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first

More information

Microsoft Querying Data with Transact-SQL - Performance Course

Microsoft Querying Data with Transact-SQL - Performance Course 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20761 - Querying Data with Transact-SQL - Performance Course Length 4 days Price $4290.00 (inc GST) Version C Overview This course is designed to introduce

More information

Analysing Big Data with Microsoft R

Analysing Big Data with Microsoft R Analysing Big Data with Micrsft R Analysing Big Data with Micrsft R Curse Cde: 20773 Certificatin Exam: 70-773 Duratin: 3 Days Certificatin Track: MCSA: Machine Learning Frmat: Classrm Level: 300 Abut

More information

Developing Microsoft SharePoint Server 2013 Core Solutions

Developing Microsoft SharePoint Server 2013 Core Solutions Develping Micrsft SharePint Server 2013 Cre Slutins Develping Micrsft SharePint Server 2013 Cre Slutins Curse Cde: 20488 Certificatin Exam: 70-488 Duratin: 5 Days Certificatin Track: N/A Frmat: Classrm

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Querying Microsoft SQL Server 20461D; 5 days, Instructor-led Course Description This 5-day instructor led course provides students with the technical skills required to write basic Transact SQL queries

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL 20761 - Querying Data with Transact-SQL Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description About this course This course is designed to introduce students to Transact-SQL.

More information

QUERYING MICROSOFT SQL SERVER COURSE OUTLINE. Course: 20461C; Duration: 5 Days; Instructor-led

QUERYING MICROSOFT SQL SERVER COURSE OUTLINE. Course: 20461C; Duration: 5 Days; Instructor-led CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: QUERYING MICROSOFT SQL SERVER Course: 20461C; Duration: 5 Days; Instructor-led WHAT YOU WILL LEARN This 5-day instructor led course provides students with

More information

COURSE OUTLINE: Querying Microsoft SQL Server

COURSE OUTLINE: Querying Microsoft SQL Server Course Name 20461 Querying Microsoft SQL Server Course Duration 5 Days Course Structure Instructor-Led (Classroom) Course Overview This 5-day instructor led course provides students with the technical

More information

Querying Microsoft SQL Server 2008/2012

Querying Microsoft SQL Server 2008/2012 Querying Microsoft SQL Server 2008/2012 Course 10774A 5 Days Instructor-led, Hands-on Introduction This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL

More information

Querying Microsoft SQL Server 2012/2014

Querying Microsoft SQL Server 2012/2014 Page 1 of 14 Overview This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server 2014. This course is the foundation

More information

JavaScript for Developers

JavaScript for Developers Curse Cde: 55244 Certificatin Exam: N/A Duratin: 5 Days Certificatin Track: N/A Frmat: Classrm Level: 200 Abut this curse: This five-day instructr-led is an in depth hands-n study f JavaScript. The curse

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Course: 20761 Course Details Audience(s): IT Professional(s) Technology: Microsoft SQL Server 2016 Duration: 24 HRs. ABOUT THIS COURSE This course is designed to introduce

More information

20461: Querying Microsoft SQL Server 2014 Databases

20461: Querying Microsoft SQL Server 2014 Databases Course Outline 20461: Querying Microsoft SQL Server 2014 Databases Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions,

More information

Course 20461C: Querying Microsoft SQL Server

Course 20461C: Querying Microsoft SQL Server Course 20461C: Querying Microsoft SQL Server Audience Profile About this Course This course is the foundation for all SQL Serverrelated disciplines; namely, Database Administration, Database Development

More information

AVANTUS TRAINING PTE LTD

AVANTUS TRAINING PTE LTD [MS20461]: Querying Microsoft SQL Server 2014 Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : SQL Server Delivery Method : Instructor-led (Classroom) Course Overview This 5-day

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Querying Microsoft SQL Server Course 20461D 5 Days Instructor-led, Hands-on Course Description This 5-day instructor led course is designed for customers who are interested in learning SQL Server 2012,

More information

After completing this course, participants will be able to:

After completing this course, participants will be able to: Querying SQL Server T h i s f i v e - d a y i n s t r u c t o r - l e d c o u r s e p r o v i d e s p a r t i c i p a n t s w i t h t h e t e c h n i c a l s k i l l s r e q u i r e d t o w r i t e b a

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Course Code: M20461 Vendor: Microsoft Course Overview Duration: 5 RRP: POA Querying Microsoft SQL Server Overview This 5-day instructor led course provides delegates with the technical skills required

More information

20461: Querying Microsoft SQL Server

20461: Querying Microsoft SQL Server 20461: Querying Microsoft SQL Server Length: 5 days Audience: IT Professionals Level: 300 OVERVIEW This 5 day instructor led course provides students with the technical skills required to write basic Transact

More information

Course 10262A: Developing Windows Applications with Microsoft Visual Studio 2010 OVERVIEW

Course 10262A: Developing Windows Applications with Microsoft Visual Studio 2010 OVERVIEW Curse 10262A: Develping Windws Applicatins with Micrsft Visual Studi 2010 OVERVIEW Abut this Curse In this curse, experienced develpers wh knw the basics f Windws Frms develpment gain mre advanced Windws

More information

20761 Querying Data with Transact SQL

20761 Querying Data with Transact SQL Course Overview The main purpose of this course is to give students a good understanding of the Transact-SQL language which is used by all SQL Server-related disciplines; namely, Database Administration,

More information

"Charting the Course to Your Success!" MOC D Querying Microsoft SQL Server Course Summary

Charting the Course to Your Success! MOC D Querying Microsoft SQL Server Course Summary Course Summary Description This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server 2014. This course is the foundation

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Course Outline 20761- Querying Data with Transact-SQL Duration: 5 days (30 hours) Target Audience: This course is the intended for Database Administrators, Database Developers, and Business Intelligence

More information

20461D: Querying Microsoft SQL Server

20461D: Querying Microsoft SQL Server 20461D: Querying Microsoft SQL Server Course Details Course Code: Duration: Notes: 20461D 5 days This course syllabus should be used to determine whether the course is appropriate for the students, based

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server 20461 - Querying Microsoft SQL Server Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description About this course This 5-day instructor led course provides students with the

More information

Essentials for IBM Cognos BI (V10.2) Day(s): 5. Overview

Essentials for IBM Cognos BI (V10.2) Day(s): 5. Overview Essentials fr IBM Cgns BI (V10.2) Day(s): 5 Curse Cde: B5270G Overview NOTE: This is an Instructr Led Online curse. Please d nt make any travel arrangements. IBM Cgns Educatin is nw pleased t ffer yu ur

More information

Querying Microsoft SQL Server (MOC 20461C)

Querying Microsoft SQL Server (MOC 20461C) Querying Microsoft SQL Server 2012-2014 (MOC 20461C) Course 21461 40 Hours This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for

More information

COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014

COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014 COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014 MODULE 1: INTRODUCTION TO MICROSOFT SQL SERVER 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions,

More information

ISTE-608 Test Out Written Exam and Practical Exam Study Guide

ISTE-608 Test Out Written Exam and Practical Exam Study Guide PAGE 1 OF 9 ISTE-608 Test Out Written Exam and Practical Exam Study Guide Written Exam: The written exam will be in the frmat f multiple chice, true/false, matching, shrt answer, and applied questins (ex.

More information

Microsoft Querying Microsoft SQL Server 2014

Microsoft Querying Microsoft SQL Server 2014 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20461 - Querying Microsoft SQL Server 2014 Length 5 days Price $4290.00 (inc GST) Version D Overview Please note: Microsoft have released a new course which

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Querying Microsoft SQL Server Duration: 5 Days (08:30-16:00) Overview: This course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server. This

More information

ITIL 2011 Service Offerings and Agreements (SOA)

ITIL 2011 Service Offerings and Agreements (SOA) IT SERVICE MANAGEMENT ITIL 2011 Service Offerings and Agreements (SOA) CERTIFICATE: DURATION: COURSE DELIVERY: LANGUAGE: ITIL 2011 Service Offerings and Agreements (SOA) 5 Days Classrm, Live Virtual Classrm

More information

Extensible Query Processing in Starburst

Extensible Query Processing in Starburst Extensible Query Prcessing in Starburst Laura M. Haas, J.C. Freytag, G.M. Lhman, and H.Pirahesh IBM Almaden Research Center CS848 Instructr: David Tman Presented By Yunpeng James Liu Outline Intrductin

More information

Querying Microsoft SQL Server 2014

Querying Microsoft SQL Server 2014 Querying Microsoft SQL Server 2014 Código del curso: 20461 Duración: 5 días Acerca de este curso This 5 day instructor led course provides students with the technical skills required to write basic Transact

More information

Querying Microsoft SQL Server 2014

Querying Microsoft SQL Server 2014 Querying Microsoft SQL Server 2014 Course: 20461 Course Details Audience(s): IT Professional(s) Technology: Microsoft SQL Server 2014 Duration: 40 Hours ABOUT THIS COURSE This forty hours of instructor-led

More information

Microsoft - Querying Microsoft SQL Server 2014 (M20461) (M20461)

Microsoft - Querying Microsoft SQL Server 2014 (M20461) (M20461) Microsoft - Querying Microsoft SQL Server 2014 (M20461) (M20461) Code: 6552 Lengt h: URL: 5 days View Online In this course, you will learn the technical skills required to write basic Transact-SQL (T-SQL)

More information

DB2 10 for z/os System Administration. Day(s): 5. Overview

DB2 10 for z/os System Administration. Day(s): 5. Overview DB2 10 fr z/os System Administratin Day(s): 5 Curse Cde: CV851G Overview The curse is updated fr DB2 10 fr z/os. This is the Classrm versin f Instructr-led Online Curse (3V851GB). Administratrs f DB2 10

More information

Course 20461C: Querying Microsoft SQL Server

Course 20461C: Querying Microsoft SQL Server Course 20461C: Querying Microsoft SQL Server About this course: This course is the foundation for all SQL Server related disciplines; namely, Database Administration, Database development and business

More information

Querying Microsoft SQL Server 2014

Querying Microsoft SQL Server 2014 Querying Microsoft SQL Server 2014 Referencia MOC 20461 Duración (horas) 25 Última actualización 27 marzo 2018 Modalidades Presencial, a medida Examen 70-461 Introducción This 5-day instructor led course

More information

CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER. Course 10964B; Duration: 5 Days; Instructor-led

CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER. Course 10964B; Duration: 5 Days; Instructor-led CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: www.inf-trek.cm CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER Curse 10964B; Duratin: 5 Days; Instructr-led WHAT YOU WILL LEARN This curse

More information

Creating a TES Encounter/Transaction Entry Batch

Creating a TES Encounter/Transaction Entry Batch Creating a TES Encunter/Transactin Entry Batch Overview Intrductin This mdule fcuses n hw t create batches fr transactin entry in TES. Charges (transactins) are entered int the system in grups called batches.

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Course 20761A: Querying Data with Transact-SQL Page 1 of 5 Querying Data with Transact-SQL Course 20761A: 2 days; Instructor-Led Introduction The main purpose of this 2 day instructor led course is to

More information

Populate and Extract Data from Your Database

Populate and Extract Data from Your Database Ppulate and Extract Data frm Yur Database 1. Overview In this lab, yu will: 1. Check/revise yur data mdel and/r marketing material (hme page cntent) frm last week's lab. Yu will wrk with tw classmates

More information

[AVNICF-MCSASQL2012]: NICF - Microsoft Certified Solutions Associate (MCSA): SQL Server 2012

[AVNICF-MCSASQL2012]: NICF - Microsoft Certified Solutions Associate (MCSA): SQL Server 2012 [AVNICF-MCSASQL2012]: NICF - Microsoft Certified Solutions Associate (MCSA): SQL Server 2012 Length Delivery Method : 5 Days : Instructor-led (Classroom) Course Overview Participants will learn technical

More information

Problem Solving Complex Project Assistance DataWarehouse Assesments and Development Courses, Trainings and Workshops

Problem Solving Complex Project Assistance DataWarehouse Assesments and Development Courses, Trainings and Workshops www.sqlbi.cm Wh We Are BI Experts and Cnsultants Funders f www.sqlbi.cm Prblem Slving Cmplex Prject Assistance DataWarehuse Assesments and Develpment Curses, Trainings and Wrkshps Bk Writers Micrsft Gld

More information

EASTERN ARIZONA COLLEGE Visual Basic Programming I

EASTERN ARIZONA COLLEGE Visual Basic Programming I EASTERN ARIZONA COLLEGE Visual Basic Prgramming I Curse Design 2015-2016 Curse Infrmatin Divisin Business Curse Number CMP 121 Title Visual Basic Prgramming I Credits 3 Develped by Lydia Mata Lecture/Lab

More information

Course 6368A: Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2008

Course 6368A: Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2008 Curse 6368A: Prgramming with the Micrsft.NET Framewrk Using Micrsft Visual Studi 2008 5 Days Abut this Curse This five-day, instructr-led curse prvides an intrductin t develping n-tier applicatins fr the

More information

Dotnet ( 4 Month ) Course Content. Introduction to.net Framework

Dotnet ( 4 Month ) Course Content. Introduction to.net Framework Dtnet ( 4 Mnth ) Curse Cntent Intrductin t.net Framewrk What is.net Why.Net Advantages f.net Framewrk Understanding the.net Framewrk Need Of.Net Framewrk Versin f.net Framewrk Intrductin f CLR CLR Architecture

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Course 20761A: Querying Data with Transact SQL Course details Course Outline Module 1: Introduction to Microsoft SQL Server 2016 This module introduces SQL Server, the versions of SQL Server, including

More information

Venezuela: Teléfonos: / Colombia: Teléfonos:

Venezuela: Teléfonos: / Colombia: Teléfonos: CONTENIDO PROGRAMÁTICO Moc 20761: Querying Data with Transact SQL Module 1: Introduction to Microsoft SQL Server This module introduces SQL Server, the versions of SQL Server, including cloud versions,

More information

Laboratory #13: Trigger

Laboratory #13: Trigger Schl f Infrmatin and Cmputer Technlgy Sirindhrn Internatinal Institute f Technlgy Thammasat University ITS351 Database Prgramming Labratry Labratry #13: Trigger Objective: - T learn build in trigger in

More information

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1 Adding Cntent MyUni... 2 Cntent Areas... 2 Curse Design... 2 Sample Curse Design... 2 Build cntent by creating a flder... 3 Build cntent by creating an item... 4 Cpy r mve cntent in MyUni... 5 Manage files

More information

Homework: Populate and Extract Data from Your Database

Homework: Populate and Extract Data from Your Database Hmewrk: Ppulate and Extract Data frm Yur Database 1. Overview In this hmewrk, yu will: 1. Check/revise yur data mdel and/r marketing material frm last week's hmewrk- this material will later becme the

More information

Querying Data with Transact SQL Microsoft Official Curriculum (MOC 20761)

Querying Data with Transact SQL Microsoft Official Curriculum (MOC 20761) Querying Data with Transact SQL Microsoft Official Curriculum (MOC 20761) Course Length: 3 days Course Delivery: Traditional Classroom Online Live MOC on Demand Course Overview The main purpose of this

More information

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills The Internet and Cmputing Cre Certificatin Guide cnsists f 64 Lessns, with lessn bjectives, summary and ten review questins. IC³ bjectives are easily lcated by using symbls thrughut the curseware. Curse

More information

MIS NETWORK ADMINISTRATOR PROGRAM

MIS NETWORK ADMINISTRATOR PROGRAM NH107-7475 SQL: Querying and Administering SQL Server 2012-2014 136 Total Hours 97 Theory Hours 39 Lab Hours COURSE TITLE: SQL: Querying and Administering SQL Server 2012-2014 PREREQUISITE: Before attending

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

Announcing Veco AuditMate from Eurolink Technology Ltd

Announcing Veco AuditMate from Eurolink Technology Ltd Vec AuditMate Annuncing Vec AuditMate frm Eurlink Technlgy Ltd Recrd any data changes t any SQL Server database frm any applicatin Database audit trails (recrding changes t data) are ften a requirement

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 1 - Calculatr Intrductin In this lab yu will be writing yur first

More information

Introduction to Programming ArcObjects using the Microsoft.Net Framework

Introduction to Programming ArcObjects using the Microsoft.Net Framework Intrductin t Prgramming ArcObjects using the Micrsft.Net Framewrk Three days Overview ArcObjects cmpnents are the building blcks f the ArcGIS family f prducts, and the ArcObjects libraries prvide a set

More information

Infrastructure Series

Infrastructure Series Infrastructure Series TechDc WebSphere Message Brker / IBM Integratin Bus Parallel Prcessing (Aggregatin) (Message Flw Develpment) February 2015 Authr(s): - IBM Message Brker - Develpment Parallel Prcessing

More information

CNS-220-1I: Citrix NetScaler Essentials and Traffic Management

CNS-220-1I: Citrix NetScaler Essentials and Traffic Management CNS-220-1I: Citrix NetScaler Essentials and Traffic Management Overview Designed fr students with little r n previus NetScaler experience, this curse is best suited fr individuals wh will be deplying r

More information

Java 8 Programming and Object Oriented Essentials for Developers New to OO (5 Days)

Java 8 Programming and Object Oriented Essentials for Developers New to OO (5 Days) www.peaklearningllc.cm Java 8 Prgramming and Object Oriented Essentials fr Develpers New t OO (5 Days) This curse is geared fr develpers wh have little r n prir wrking knwledge f bjectriented (OO) prgramming

More information

PHP / JAVA Summer Training Program 2012

PHP / JAVA Summer Training Program 2012 PHP / JAVA Summer Training Prgram 2012 Curse Duratin: 45 days Pre-Requisite: Basic Knwledge f Internet Curse Fee: 10,000 ( Online Examinatin Fee, Bks, Certificatin, Tls & Sftware's Included ) Intrductin

More information

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the.

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the. 1 f 22 26/09/2016 15:58 Mdule Cnsideratins Cntents: Lessn 1: Lessn 2: Mdule Befre yu start with almst any planning. apprpriately. As benefit f gd T appreciate architecture. it places n the understanding

More information

IT103T Operating Systems [Onsite]

IT103T Operating Systems [Onsite] IT103T [Onsite] Curse Descriptin: This curse serves as a survey n typical internal functins f a generic cmputer perating system. The cmputer s ability t manage such resurces as memry, device, I/O, files

More information

Course Overview Basic Linux commands like working with files and directories is desired.

Course Overview Basic Linux commands like working with files and directories is desired. [AWS-SAW]: AWS Clud Slutin Architect Wrkshp Length Delivery Methd : 4 days : Instructr-led (Classrm) Curse Overview Basic Linux cmmands like wrking with files and directries is desired. Pre-Requisites

More information

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern Design Patterns By Võ Văn Hải Faculty f Infrmatin Technlgies HUI Cllectinal Patterns Sessin bjectives Intrductin Cmpsite pattern Iteratr pattern 2 1 Intrductin Cllectinal patterns primarily: Deal with

More information

Cisco EPN Manager Operations

Cisco EPN Manager Operations Training Data Sheet Cisc EPN Manager Operatins Cisc EPN Manager Operatins is an instructr-led and lab-based curse in which yu learn t perfrm basic EPN Manager netwrk peratins functins. The Cisc Evlved

More information

Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD Tel: Web:Nutechtraining.com

Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD Tel: Web:Nutechtraining.com Nutech Cmputer Training Institute 1682 E. Gude Dr. #102 Rckville, MD. 20850 Tel: 301-610-9300 Web:Nutechtraining.cm www.nutechtraining.cm Oracle OCP/DBA 12C Certificatin Oracle Certified Assciate Oracle

More information

Southern York County School District Instructional Plan

Southern York County School District Instructional Plan Suthern Yrk Cunty Schl District Instructinal Plan Dates: August/September Unit 1 Intrductin t Mac Cmputers 1. Effective file and flder management prmtes efficiency. 2. Mac and PC cmputers differ in desktp,

More information

Programming Project: Building a Web Server

Programming Project: Building a Web Server Prgramming Prject: Building a Web Server Submissin Instructin: Grup prject Submit yur cde thrugh Bb by Dec. 8, 2014 11:59 PM. Yu need t generate a simple index.html page displaying all yur grup members

More information

Keeping Dynamics GP Secure

Keeping Dynamics GP Secure Keeping Dynamics GP Secure February 23, 2017 Charles Allen Senir Managing Cnsultant BKD Technlgies callen@bkd.cm T Receive CPE Credit Participate in entire webinar Answer attendance checks & plls when

More information

Querying Data with Transact-SQL (20761)

Querying Data with Transact-SQL (20761) Querying Data with Transact-SQL (20761) Formato do curso: Presencial e Live Training Preço: 1630 Nível: Iniciado Duração: 35 horas The main purpose of this 5 day instructor led course is to give students

More information

CS200T Programming in Java I [Onsite]

CS200T Programming in Java I [Onsite] CS200T Prgramming in Java I [Onsite] Curse Descriptin: This curse cvers the fundamentals f Java prgramming. Object-riented prgramming techniques and Unified Mdeling Language (UML) are als intrduced. Students

More information

Web Application Security Version 13.0 Training Course

Web Application Security Version 13.0 Training Course Web Applicatin Security Versin 13.0 Training Curse SecureSphere Web Applicatin Security Versin 13.0 Required Training Units: 4 (TR-UNIT) Training Units are gd fr 1 year frm the time f purchase. Length:

More information

Introduction to Oracle Business Intelligence Enterprise Edition: OBIEE Answers 11g

Introduction to Oracle Business Intelligence Enterprise Edition: OBIEE Answers 11g Intrductin t Oracle Business Intelligence Enterprise Editin: OBIEE Answers 11g Crnell Custmized Versin April 2012 Minr crrectins were made n page 2, fr the Oct 20, 2017 OBIEE 12c Upgrade April, 2012 All

More information

10 hours create the college model. Data Definition Commands. Data Manipulation commands, Data Control commands

10 hours create the college model. Data Definition Commands. Data Manipulation commands, Data Control commands Mdule-04 STRUCTURED QUERY LANGUAGE (SQL) 4.1 Mtivatin The knwledge SQL is essential fr sftware develper hence SQL is an imprtant subject in cmputer prgramming arund the wrld. 4.2 Objective DBMS is the

More information

Maximo Reporting: Maximo-Cognos Metadata

Maximo Reporting: Maximo-Cognos Metadata Maxim Reprting: Maxim-Cgns Metadata Overview...2 Maxim Metadata...2 Reprt Object Structures...2 Maxim Metadata Mdel...4 Metadata Publishing Prcess...5 General Architecture...5 Metadata Publishing Prcess

More information

Access 2000 Queries Tips & Techniques

Access 2000 Queries Tips & Techniques Access 2000 Queries Tips & Techniques Query Basics The query is the basic tl that Access prvides fr retrieving infrmatin frm yur database. Each query functins like a questin that can be asked immediately

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Lab 5 Sorting with Linked Lists

Lab 5 Sorting with Linked Lists UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C WINTER 2013 Lab 5 Srting with Linked Lists Intrductin Reading This lab intrduces

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

JAVA. Java Syllabus. Introduction to Sun Technologies Pre-requirements of Java Development

JAVA. Java Syllabus. Introduction to Sun Technologies Pre-requirements of Java Development Java Syllabus Intrductin t Sun Technlgies Pre-requirements f Java Develpment JDK Installatin and setting the Classpath Java surce file structure Basics f Java Prgramming Cmpiling the Prgram The main()

More information

IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016

IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016 IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016 1. What are tw functins f an perating system? (Chse tw.) cntrlling hardware access managing applicatins text prcessing flw chart editing prgram

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 Iterative Code Design handout Style Guidelines handout

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 Iterative Code Design handout Style Guidelines handout UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2013 Lab 1 - Calculatr Intrductin Reading Cncepts In this lab yu will be

More information