Looking for Global training? Go to https://firebrand.training/en or stay on the current site (Nederland)
Op deze driedaagse versnelde querygegevens met Transact-SQL-cursus ontwikkelt u uw begrip van het beheren, opvragen en programmeren van gegevens via Transact-SQL-componenten. Je leert ook de vaardigheden om Transact-SQL-taal te gebruiken, relevant voor alle SQL Server-disciplines. Met deze vaardigheden kunt u geavanceerde query's uitvoeren tegen uw gegevens om meer inzicht te krijgen om de prestaties van uw bedrijf te verbeteren.
Deze cursus is 50% sneller dan andere traditionele trainingscursussen, wat betekent dat u eerder op kantoor bent en uw nieuwe vaardigheden in de praktijk brengt.
Je ontwikkelt je kennis en vaardigheden van Transact-SQL. Specifieke vaardigheden die je leert zijn:
Firebrand zijn Microsoft Learning Partners, wat betekent dat u profiteert van Microsoft's Officiële Curriculum (MOC), afgeleverd door onze ervaren Microsoft Certified Trainers (MCT). Onze unieke Lezing | Lab | Beoordeling aanpak betekent dat u zich zowel aan de theoretische als aan de praktische taken zult blootstellen. Dit helpt u informatie te bewaren en u praktische vaardigheden bij te brengen die nodig zijn om uw nieuwe vaardigheden toe te passen wanneer u naar kantoor terugkeert.
U moet zich voorbereiden op het examen en dit ter plaatse afleggen. Dit wordt gedekt door uw certificeringsgarantie. Strong>
Dit examen is bedoeld voor SQL Server-databasebeheerders, systeemingenieurs en ontwikkelaars met twee of meer jaar ervaring. Dit is voor professionals die hun vaardigheden en kennis willen valideren bij het schrijven van vragen.
Bekijk nu de prijzen om erachter te komen hoeveel je kunt besparen als je tweemaal zo snel traint.
De Software Assurance Training Vouchers (SATV) van Microsoft geven u misschien wel recht op een opleiding met flinke korting. Heeft uw onderneming software van Microsoft gekocht? Kijk dan of het gebundeld kan worden met de vouchers voor gratis opleiding! Vouchers kunnen ingewisseld worden voor opleidingen voor alle Microsoft technologieën. Weet u niet zeker of dit voor u geldt, neem dan contact met ons op.De Software Assurance Training Vouchers (SATV) van Microsoft geven u misschien wel recht op een opleiding met flinke korting. Heeft uw onderneming software van Microsoft gekocht? Kijk dan of het gebundeld kan worden met de vouchers voor gratis opleiding! Vouchers kunnen ingewisseld worden voor opleidingen voor alle Microsoft technologieën. Weet u niet zeker of dit voor u geldt, neem dan contact met ons op.
U wordt 50% sneller gecertificeerd: dit betekent dat u eerder naar kantoor terugkeert, waardoor u uw nieuwe vaardigheden kunt oefenen.
Officieel Curriculum van Microsoft (MOC): we bieden het officiële Microsoft-curriculum, zodat u beschikt over het nieuwste en meest recente curriculum.
Microsoft Certified Trainers (MCT): u zult leren van onze Microsoft Certified Instructors die beschikken over jarenlange branchekennis. Hun ervaring en unieke inzichten zullen worden gebruikt om uw leerervaring te verrijken.
Andere versnelde trainingsaanbieders vertrouwen sterk op colleges, onafhankelijke zelftesten en studeren.
Effectieve technische instructies moeten zeer gevarieerd en interactief zijn om het aandachtsniveau hoog te houden, kameraadschap en teamwerk tussen de studenten en de instructeur te bevorderen en kennis te verankeren door praktisch leren.
Deze informatie is verstrekt als een nuttig hulpmiddel voor kandidaten die een opleiding overwegen. Cursussen inclusief certificering worden geleverd met een certificeringsgarantie. Slaag de eerste keer of train opnieuw gratis (je betaal voor de accommodatie en examens bij jouw terugkeer). Wij kunnen geen garanties geven over persoonlijke successen of voordelen van het behalen van certificering.
This module introduces SQL Server, the versions of SQL Server, including cloud versions, and how to connect to SQL Server using SQL Server Management Studio.
Lessons
Lab : Working with SQL Server Tools
After completing this module, you will be able to:
This module describes the elements of T-SQL and their role in writing queries. Describe the use of sets in SQL Server. Describe the use of predicate logic in SQL Server. Describe the logical order of operations in SELECT statements.
Lessons
Lab : Introduction to T-SQL Querying
After completing this module, you will be able to:
This module introduces the fundamentals of the SELECT statement, focusing on queries against a single table.
Lessons
Lab : Writing Basic SELECT Statements
After completing this module, you will be able to:
This module describes how to write queries that combine data from multiple sources in Microsoft SQL Server.
Lessons
Lab : Querying Multiple Tables
After completing this module, you will be able to:
This module describes how to implement sorting and filtering.
Lessons
Lab : Sorting and Filtering Data
After completing this module, you will be able to:
This module introduces the data types SQL Server uses to store data.
Lessons
Lab : Working with SQL Server Data Types
After completing this module, you will be able to:
This module describes how to create DML queries, and why you would want to.
Lessons
Lab : Using DML to Modify Data
After completing this module, you will be able to:
This module introduces some of the many built in functions in SQL Server.
Lessons
Lab : Using Built-In Functions
After completing this module, you will be able to:
This module describes how to use aggregate functions.
Lessons
Lab : Grouping and Aggregating Data
After completing this module, you will be able to:
Module 10: Using Subqueries
This module describes several types of subquery and how and when to use them.
Lessons
Lab : Using Subqueries
After completing this module, you will be able to:
Previously in this course, you learned about using subqueries as an expression that returned results to an outer calling query. Like subqueries, table expressions are query expressions, but table expressions extend this idea by allowing you to name them and to work with their results as you would work with data in any valid relational table. Microsoft SQL Server supports four types of table expressions: derived tables, common table expression (CTEs), views, and inline table-valued functions (TVFs). In this module, you will learn to work with these forms of table expressions and learn how to use them to help create a modular approach to writing queries.
Lessons
Lab : Using Table Expressions
After completing this module, you will be able to:
This module introduces how to use the set operators UNION, INTERSECT, and EXCEPT to compare rows between two input sets.
Lessons
Lab : Using Set Operators
After completing this module, you’ll be able to:
Module 13: Using Windows Ranking, Offset, and Aggregate Functions
This module describes the benefits to using window functions. Restrict window functions to rows defined in an OVER clause, including partitions and frames. Write queries that use window functions to operate on a window of rows and return ranking, aggregation, and offset comparison results.
Lessons
Lab : Using Windows Ranking, Offset, and Aggregate Functions
After completing this module, you'll be able to:
This module describes write queries that pivot and unpivot result sets. Write queries that specify multiple groupings with grouping sets
Lessons
Lab : Pivoting and Grouping Sets
After completing this module, you'll be able to:
This module describes how to return results by executing stored procedures. Pass parameters to procedures. Create simple stored procedures that encapsulate a SELECT statement. Construct and execute dynamic SQL with EXEC and sp_executesql.
Lessons
Lab : Executing Stored Procedures
After completing this module, you'll be able to:
This module describes how to enhance your T-SQL code with programming elements.
Lessons
Lab : Programming with T-SQL
After completing this module, you'll be able to:
Module 17: Implementing Error Handling
This module introduces error handling for T-SQL.
Lessons
Lab : Implementing Error Handling
After completing this module, you’ll be able to:
This module describes how to implement transactions.
Lessons
Lab : Implementing Transactions
After completing this module, you'll be able to:
U doet de volgende examens, gedekt door uw certificeringsgarantie:
Bij dit examen worden uw kennis en vaardigheden getest op het volgende:
Inbegrepen in uw versnelde training zal zijn:
U moet een praktische kennis hebben van relationele databases en basiskennis van het Microsoft Windows-besturingssysteem en de kernfunctionaliteit. P>
Weet je niet zeker of je aan de vereisten voldoet? Maak je geen zorgen. Jouw trainingsadviseur bespreekt jouw achtergrond met je om te begrijpen of deze cursus geschikt is voor je.
Wereldwijd heeft Firebrand in haar 10-jarig bestaan al 77455 studenten opgeleid! We hebben ze allemaal gevraagd onze versnelde opleidingen te evalueren. De laatste keer dat we onze resultaten analyseerden, bleek 96.70% ons te beoordelen als 'boven verwachting'
"TSQL training with the instructor was great, very informative, interactive and beneficial. "
Anoniem (6/7/2020 (Maandag) t/m 8/7/2020 (Woensdag))
"Really engaging and knowledgeable teacher. Great delivery and not wasting students time."
Aneta Ryans. (28/10/2019 (Maandag) t/m 30/10/2019 (Woensdag))
"Great course!"
Denys Lykov, National Grid. (29/4/2019 (Maandag) t/m 1/5/2019 (Woensdag))
"The courses are very well structured at Firebrand, the instructors are patient and helpful. "
B.M.. (5/11/2018 (Maandag) t/m 7/11/2018 (Woensdag))
"I like the model, dedicated and focused approach to learning though different."
Albert Gill, na. (5/11/2018 (Maandag) t/m 7/11/2018 (Woensdag))
Start datum |
Eind datum |
Status |
Nu boeken |
---|---|---|---|
30/11/2020 (Maandag) |
2/12/2020 (Woensdag) |
Beëindigde cursus - Geef feedback |
|
14/12/2020 (Maandag) |
16/12/2020 (Woensdag) |
Beëindigde cursus - Geef feedback |
|
4/1/2021 (Maandag) |
6/1/2021 (Woensdag) |
Beëindigde cursus - Geef feedback |
|
28/6/2021 (Maandag) |
30/6/2021 (Woensdag) |
Wachtlijst |
|