Find Out How We Help You To Learn New Skills Quickly
Think you are ready for the course? Take a FREE practice test to assess your knowledge!
On this accelerated 6-day MCSA: Database Development course, you’ll learn the skills to use the Transact-SQL language relevant to all SQL Server disciplines. This language is important to tasks like database administration, business intelligence and database development. You’ll also learn database development skills like advanced table designs, columnstore indexes and using in-memory tables. These skills are great for expanding your SQL capabilities and fluency.
Your accelerated course will be taught by Microsoft Certified Trainers (MCT), using Microsoft Official Curriculum (MOC) and practice tests. You’ll also use Firebrand’s unique Lecture | Lab | Review technique, covering topics like:
This course is best suited to professionals working closely with SQL Server 2016, creating and managing databases, looking to develop and prove their advanced skills working with databases.
Interested? See prices or call +27 87 550 2195
Other accelerated training providers rely heavily on lecture and independent self-testing and study.
Effective technical instruction must be highly varied and interactive to keep attention levels high, promote camaraderie and teamwork between the students and instructor, and solidify knowledge through hands-on learning.
This information has been provided as a helpful tool for candidates considering training. Courses that include certification come with a certification guarantee. Pass first time or train again for free (just pay for accommodation and exams on your return). We do not make any guarantees about personal successes or benefits of obtaining certification. Benefits of certification determined through studies do not guarantee any particular personal successes.
Interested? See prices or call +27 87 550 2195
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:
Before beginning to work with Microsoft SQL Server in either a development or an administration role, it is important to understand the scope of the SQL Server platform. In particular, it is useful to understand that SQL Server is not just a database engine - it is a complete platform for managing enterprise data. SQL Server provides a strong data platform for all sises of organisations, in addition to a comprehensive set of tools to make development easier, and more robust.
Lessons
After completing this module, you'll be able to:
In a relational database management system (RDBMS), user and system data is stored in tables. Each table consists of a set of rows that describe entities and a set of columns that hold the attributes of an entity. For example, a Customer table might have columns such as CustomerName and CreditLimit, and a row for each customer. In Microsoft SQL Server data management software tables are contained within schemas that are very similar in concept to folders that contain files in the operating system. Designing tables is one of the most important tasks that a database developer undertakes, because incorrect table design leads to the inability to query the data efficiently. After an appropriate design has been created, it is important to know how to correctly implement the design.
Lessons
Lab : Designing and Implementing Tables
After completing this module, you'll be able to:
Module 3: Advanced Table Designs
The physical design of a database can have a significant impact on the ability of the database to meet the storage and performance requirements set out by the stakeholders. Designing a physical database implementation includes planning the filegroups, how to use partitioning to manage large tables, and using compression to improve storage and performance. Temporal tables are a new feature in SQL Server and offer a straightforward solution to collecting changes to your data.
Lessons
Lab : Using Advanced Table Designs
After completing this module, you'll be able to:
The quality of data in your database largely determines the usefulness and effectiveness of applications that rely on it - the success or failure of an organisation or a business venture could depend on it. Ensuring data integrity is a critical step in maintaining high-quality data. You should enforce data integrity at all levels of an application from first entry or collection through storage. Microsoft SQL Server data management software provides a range of features to simplify the job.
Lessons
Lab : Using Data Integrity Through Constraints
After completing this module, you'll be able to:
An index is a collection of pages associated with a table. Indexes are used to improve the performance of queries or enforce uniqueness. Before learning to implement indexes, it is helpful to understand how they work, how effective different data types are when used within indexes, and how indexes can be constructed from multiple columns. This module discusses table structures that do not have indexes, and the different index types available in Microsoft SQL Server.
Lessons
Lab : Implementing Indexes
After completing this module, you'll be able to:
Indexes play an important role in enabling SQL Server to retrieve data from a database quickly and efficiently. This module discusses advanced index topics including covering indexes, the INCLUDE clause, query hints, padding and fill factor, statistics, using DMOs, the Database Tuning Advisor, and Query Store.
Lessons
Lab : Optimising Indexes
After completing this module, you'll be able to:
Introduced in Microsoft SQL Server 2012, columnstore indexes are used in large data warehouse solutions by many organisations. This module highlights the benefits of using these indexes on large datasets; the improvements made to columnstore indexes in SQL Server 2016; and the considerations needed to use columnstore indexes effectively in your solutions.
Lessons
Lab : Using Columnstore Indexes
After completing this module, you'll be able to:
This module describes the design and implementation of views. A view is a special type of query - one that is stored and can be used in other queries - just like a table. With a view, only the query definition is stored on disk; not the result set. The only exception to this is indexed views, when the result set is also stored on disk, just like a table. Views simplify the design of a database by providing a layer of abstraction, and hiding the complexity of table joins. Views are also a way of securing your data by giving users permissions to use a view, without giving them permissions to the underlying objects. This means data can be kept private, and can only be viewed by appropriate users.
Lessons
Lab : Designing and Implementing Views
After completing this module, you'll be able to:
Module 9: Designing and Implementing Stored Procedures
This module describes the design and implementation of stored procedures.
Lessons
Lab : Designing and Implementing Stored Procedures
After completing this module, you'll be able to:
Functions are routines that you use to encapsulate frequently performed logic. Rather than having to repeat the function logic in many places, code can call the function. This makes code more maintainable, and easier to debug. In this module, you'll learn to design and implement user-defined functions (UDFs) that enforce business rules or data consistency. You'll also learn how to modify and maintain existing functions.
Lessons
Lab : Designing and Implementing User-Defined Functions
After completing this module, you'll be able to:
Data Manipulation Language (DML) triggers are powerful tools that you can use to enforce domain, entity, referential data integrity and business logic. The enforcement of integrity helps you to build reliable applications. In this module, you'll learn what DML triggers are, how they enforce data integrity, the different types of trigger that are available to you, and how to define them in your database.
Lessons
Lab : Responding to Data Manipulation by Using Triggers
After completing this module, you'll be able to:
Microsoft SQL Server 2014 data management software introduced in-memory online transaction processing (OLTP) functionality features to improve the performance of OLTP workloads. SQL Server adds several enhancements, such as the ability to alter a memory-optimised table without recreating it. Memory-optimised tables are primarily stored in memory, which provides the improved performance by reducing hard disk access. Natively compiled stored procedures further improve performance over traditional interpreted Transact-SQL.
Lessons
Lab : Using In-Memory Database Capabilities
After completing this module, you'll be able to:
As a SQL Server professional, you are likely to be asked to create databases that meet business needs. Most requirements can be met using Transact-SQL. However, occasionally you may need additional capabilities that can only be met by using common language runtime (CLR) code. As functionality is added to SQL Server with each new release, the necessity to use managed code decreases. However, there are times when you might need to create aggregates, stored procedures, triggers, user-defined functions, or user-defined types. You can use any .NET Framework language to develop these objects. In this module, you'll learn how to use CLR managed code to create user-defined database objects for SQL Server.
Lessons
Lab : Implementing Managed Code in SQL Server
After completing this module, you'll be able to:
XML provides rules for encoding documents in a machine-readable form. It has become a widely adopted standard for representing data structures, rather than sending unstructured documents. Servers that are running Microsoft SQL Server data management software often need to use XML to interchange data with other systems; many SQL Server tools provide an XML-based interface. SQL Server offers extensive handling of XML, both for storage and querying. This module introduces XML, shows how to store XML data within SQL Server, and shows how to query the XML data. The ability to query XML data directly avoids the need to extract data into a relational format before executing Structured Query Language (SQL) queries. To effectively process XML, you need to be able to query XML data in several ways: returning existing relational data as XML, and querying data that is already XML.
Lessons
Lab : Storing and Querying XML Data in SQL Server
After completing this module, you'll be able to:
This module describes spatial data and how this data can be implemented within SQL Server.
Lessons
Lab : Working with SQL Server Spatial Data
After completing this module, you'll be able to:
Module 16: Storing and Querying BLOBs and Text Documents in SQL Server
Traditionally, databases have been used to store information in the form of simple values - such as integers, dates, and strings - that contrast with more complex data formats, such as documents, spreadsheets, image files, and video files. As the systems that databases support have become more complex, administrators have found it necessary to integrate this more complex file data with the structured data in database tables. For example, in a product database, it can be helpful to associate a product record with the service manual or instructional videos for that product. SQL Server provides several ways to integrate these files - that are often known as Binary Large Objects (BLOBs) - and enable their content to be indexed and included in search results. In this module, you'll learn how to design and optimise a database that includes BLOBs.
Lessons
Lab : Storing and Querying BLOBs and Text Documents in SQL Server
After completing this module, you'll be able to:
Module 17: SQL Server Concurrency
This module explains how to name, declare, assign values to, and use variables. It also describes how to store data in an array. Concurrency control is a critical feature of multiuser database systems; it allows data to remain consistent when many users are modifying data at the same time. This module covers the implementation of concurrency in Microsoft SQL Server. You'll learn about how SQL Server implements concurrency controls, and the different ways you can configure and work with concurrency settings.
Lessons
Lab : SQL Server Concurrency
After completing this module, you'll be able to:
This module explains how to name, declare, assign values to, and use variables. It also describes how to store data in an array. This module looks at how to measure and monitor the performance of your SQL Server databases. The first two lessons look at SQL Server Extended Events, a flexible, lightweight event-handling system built into the Microsoft SQL Server Database Engine. These lessons focus on the architectural concepts, troubleshooting strategies and usage scenarios.
Lessons
Lab : Monitoring, Tracing, and Baselining
After completing this module, you'll be able to:
Interested? See prices or call +27 87 550 2195
You'll sit the following exams, covered by your Certification Guarantee:
Exam 70-761: Querying Data with Transact-SQL
This exam will test you on the following skills:
Exam 70-762: Developing SQL Databases
This exam will test you on the following skills:
Interested? See prices or call +27 87 550 2195
Firebrand Training offers top-quality technical education and certification training in an all-inclusive course package specifically designed for the needs and ease of our students. We attend to every detail so our students can focus solely on their studies and certification goals.
Our instructors teach to accommodate every student's learning needs through individualised instruction, hands-on labs, lab partner and group exercises, independent study, self-testing, and question/answer drills.
Firebrand Training has dedicated, well-equipped educational facilities where you will attend instruction and labs and have access to comfortable study and lounging rooms. Our students consistently say our facilities are second-to-none.
Should a student complete a Firebrand Training Program without having successfully passed all vendor examinations, the student may re-attend that program for a period of one year. Students will only be responsible for accommodations and vendor exam fees.
Interested? See prices or call +27 87 550 2195
In addition to professional experience, you must have the following technical knowledge:
Don’t worry - we’ll discuss your technical background, experience and qualifications to determine whether this accelerated course suits you.
Just call us on +27 87 550 2195 and speak to one of our enrolment consultants.
Firebrand is an immersive environment and requires commitment. Some prerequisites are simply guidelines; you may find your unique experience, attitude and determination enables you to succeed on your accelerated course.
Interested? See prices or call +27 87 550 2195
When do you want to sit your accelerated course?
Start |
Finish |
Status |
Location |
Book now |
---|---|---|---|---|
|
|
Finished |
- |
|
|
|
Finished |
- |
|
|
|
Wait list |
Nationwide |
|
|
|
Open |
Nationwide |
|
|
|
Open |
Nationwide |
Here's the Firebrand Training review section. Since 2001 we've trained exactly 70,652 students and asked them all to review our Accelerated Learning. Currently, 96.74% have said Firebrand exceeded their expectations.
Read reviews from recent accelerated courses below or visit Firebrand Stories for written and video interviews from our alumni.
"The instructor is a humorous and knowledgeable instructor. She has mastered that art of keeping the student engaged by using a mixture of theory, labs and breaks – although she has trouble spelling the word colour! :O)"
Anonymous. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (5/11/2018 to 10/11/2018)
"The instructors are always knowledgeable but the courses wont make you a superior developer alone."
Anonymous. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (5/11/2018 to 10/11/2018)
"Quick to the point training, with plenty of breaks and time to learn."
Anonymous. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (5/11/2018 to 10/11/2018)
"Very experienced trainer"
Hannes Kopitz, Fresenius Kabi. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (5/11/2018 to 10/11/2018)
"Excellent facilities and learning environment. Very knowledgeable and experienced tutor. Very intense, but also very enjoyable."
Joe Lower, ArjoWiggins Chartham Ltd. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (5/11/2018 to 10/11/2018)
"Software was correctly setup, and I learnt a lot! I would highly recommend this course!"
Anonymous. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (5/11/2018 to 10/11/2018)
"My level of knowledge of SQL was null when I started the course, after the first three days I had a basic idea of how to use TSQL to write queries, although the second part of the course was really advance for a beginner, it was really good explained and I was able to understand most of it and will keep in the future. Didn't pass the first test and I did not do the second test. "
Merce Bauza Cerezo, HEE. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (30/10/2017 to 4/11/2017)
"Enjoyed my time doing SQL 2016 DD. The condensed long day format works very well for me. I even have a a Failure is not an option T-Shirt. I really like these courses."
Roy Casella, Designated. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (30/10/2017 to 4/11/2017)
"Good course, very intense though. Very good coverage of all concepts - trainer was extremely knowledgeable and helpful."
Barry Henty, Natures Way Foods Ltd. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (30/10/2017 to 4/11/2017)
"It is a great experience with very good course quality."
Brayan De Abreu, Service Works Group.. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (30/10/2017 to 4/11/2017)
"Firebrand exceeded my expectations. With just starting career in IT I was provided with courseware and referencing material I will constantly be referring to even after the course has finished."
Hayley Bean, Steelite International Ltd. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (30/10/2017 to 4/11/2017)
"I had heard a few things about Firebrand training prior to arriving certain individuals said I would be forced to stay up reading and studying all night. But after experiencing it myself I learnt that everyone's experience is different. The food and accommodation is amazing and the learning is set to a bearable pace that you have the opportunity to settle down and let the knowledge sink in."
Alexander Farrow Harson, Department for Education. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (30/10/2017 to 4/11/2017)
"After finishing the training for the MCSA course, I now feel confident in taking the examination!"
Callum Nocton-Gribben, Onefile ltd. - Microsoft MCSA: SQL Server 2016 - Database Development (6 days) (14/8/2017 to 19/8/2017)
"The training centre is very well organised and professional, I found the course very detailed and got a lot out of it."
Joseph Naber. - Microsoft MTA Software Development Fundamentals (2 days) (10/1/2019 to 11/1/2019)
"Firebrand training is a good way to get qualifications fast. Be prepared with the self-learning before hand and for long days."
Anonymous. - Microsoft MTA Software Development Fundamentals (2 days) (10/1/2019 to 11/1/2019)
"The course was intense but well delivered, the instructor engaged with the group and took the time to give good feedback and help."
Joseph Naber, Games Workshop. - Microsoft MTA Software Development Fundamentals (2 days) (10/1/2019 to 11/1/2019)
"The course is high intensity but still managed to maintain a friendly atmosphere. The residential aspect is definitely beneficial to your learning. "
Anonymous. - Microsoft MTA: Windows Server Administration Fundamentals (3 days) (9/1/2019 to 10/1/2019)
"A good learning environment for people who are looking for a job in the IT depart. Friendly instructor. "
Thomas Thornton. - Microsoft MTA Security, Windows Server Administration & Networking (6 days) (7/1/2019 to 12/1/2019)
"Great teaching but the course was not particularly relevant to our job and skill set. "
Dexter Lee, BBC. - Microsoft MTA Security, Windows Server Administration & Networking (6 days) (7/1/2019 to 12/1/2019)
"Very good facilities, good efficient teaching, would definitely recommend to others that are looking for an IT course."
Andrew Smith, BBC. - Microsoft MTA Security, Windows Server Administration & Networking (6 days) (7/1/2019 to 12/1/2019)
"My instructor was extremely committed to help with our studying, with a group who have had very little experience in the topic our course was based on. The resources provided were also very useful."
Sam Hughes, BBC. - Microsoft MTA Security, Windows Server Administration & Networking (6 days) (7/1/2019 to 12/1/2019)
"The course was very helpful to me as I do C# at my job. They cover all basic fundamentals. The food here is great as well. The stay was comfortable and flexible. You can stay here easily and learn quickly."
S.Y.. - Microsoft Programming in C# (4 days) (7/1/2019 to 10/1/2019)
"Good facility, nice people and an organised concept. Enjoyed my stay and learnt new skills."
James Vost. - Microsoft MTA HTML5 App Development Fundamentals (2 days) (7/1/2019 to 8/1/2019)
"The training provided was all relevant and useful for me to prepare for the exam. "
Anonymous. - Microsoft MTA HTML5 App Development Fundamentals (2 days) (7/1/2019 to 8/1/2019)
"Training is relevant but extremely intense, there is a lot to take in in a short amount of time. "
Anonymous. - Microsoft MTA HTML5 App Development Fundamentals (2 days) (7/1/2019 to 8/1/2019)
"Intensive training, I would recommend, decent level of experience required, but it worked for me to do that extra knowledge required to become MCSA certified. Thanks."
Barry Mansell, CPTO. - Microsoft MCSA: Windows Server 2016 (11 days) (6/12/2018 to 16/12/2018)
"It is a nice experience at Firebrand."
Anonymous. - Microsoft MCSA: Windows Server 2016 (11 days) (6/12/2018 to 16/12/2018)
"I recommend Firebrand to anyone that is looking to either gain knowledge for the first time or to learn something new."
S.P.. - Microsoft MTA Database Fundamentals (2 days) (12/12/2018 to 13/12/2018)
"Awesome place, awesome instructors, real challenges. This is the Firebrands recipe for success."
V.F.. - Microsoft Architecting Microsoft Azure Solutions (3 days) (8/12/2018 to 10/12/2018)
"Learnt a lot - good course, but very intense. Not for the faint or weak! Very good instructor."
Anonymous. - Microsoft Architecting Microsoft Azure Solutions (3 days) (8/12/2018 to 10/12/2018)
"Good course, long hours, sometimes a little overwhelming to say the least. good atmosphere."
Richard Eaton, Avnet. - Microsoft Architecting Microsoft Azure Solutions (3 days) (8/12/2018 to 10/12/2018)
"Great instructor."
Anonymous. - Microsoft MCSA: Cloud Platform & MCSE: Cloud Platform and Infrastructure (Azure) (10 days) (1/12/2018 to 10/12/2018)
"Extremely effective use of time. Very knowledgeable instructor. Good, focused group."
Mark Townsend, TechSea Ltd. - Microsoft MCSA: Cloud Platform & MCSE: Cloud Platform and Infrastructure (Azure) (10 days) (1/12/2018 to 10/12/2018)
"Good trainer who has lots of experience in the field. Taught at a good pace and got through all off the content."
Jess Chapman, Natures Way Foods. - Microsoft MCSA: Windows Server 2016 (11 days) (6/12/2018 to 16/12/2018)
"Very busy course. Lots of content."
Anonymous, Codurance - Microsoft Developing Microsoft Azure Solutions (4 days) (4/12/2018 to 7/12/2018)
"Great way to study in an intensive learning environment without the distractions often attributed to E Learning."
Daniel Middleditch, React Computer Partnership. - Microsoft Implementing Microsoft Azure Infrastructure Solutions (3 days) (1/12/2018 to 3/12/2018)
"Its Good."
Lyndon Martin, Nottinghamshire Healthcare. - Microsoft MCSA: SQL Server 2016 - Business Intelligence Development (5 days) (26/11/2018 to 30/11/2018)
"I will happily use firebrand again the staff and the teachers are great, its hard work but completely worth it. "
Anonymous. - Microsoft MCSA: SQL Server 2016 - Business Intelligence Development (5 days) (26/11/2018 to 30/11/2018)
"I love training at Firebrand. As a consultant, every day matters as you do not get paid if you do not work. The immersive bootcamp allows myself to cover twice the material in half the time. I also like getting into my bubble by it being residential so I can focus on absorbing and recalling. Great having the test centre onsite.. Maximises exam cram time. Thank you FB Wyboston."
Roy Casella, Designated. - Microsoft MCSA: SQL Server 2016 - Business Intelligence Development (5 days) (26/11/2018 to 30/11/2018)
"I enjoyed my course at Firebrand. The trainers are friendly and extremely knowledgeable. This was my first experience of Microsoft exams and I would not hesitate to recommend Firebrand for anyone looking to achieve certification."
Darren Conley, Nicander Ltd.. - Microsoft MCSA: SQL Server 2016 - Business Intelligence Development (5 days) (26/11/2018 to 30/11/2018)
"Studying with Firebrand is tough, theres no getting away from the fact that the days are long and full of content, however, the trainers are knowledgeable and the training is delivered professionally, in excellent facilities."
Rob Sims. - Microsoft MCSA: SQL Server 2016 - Business Intelligence Development (5 days) (26/11/2018 to 30/11/2018)
"Great experience and staff, training setup and instructor."
K.W., Midwich Ltd. - Microsoft MCSA: SQL Server 2016 - Business Intelligence Development (5 days) (26/11/2018 to 30/11/2018)
"Course had plenty of useful information and very helpful."
Connor Venton, Ringway Jacobs. - Microsoft MCSA: SQL Server 2016 - Business Intelligence Development (5 days) (26/11/2018 to 30/11/2018)
"My experience of this intensive course was a good one! This was due to my instructor who was so helpful and engaged us all from the beginning to the end. Thanks to the instructor for being an amazing , intelligent , funny and caring instructor"
Louise-Clair Elliot, Freightliner. - Microsoft MCSA: BI Reporting (4 days) (22/11/2018 to 25/11/2018)
"This is how training should be imparted especially the accelerated approach. Thanks a ton."
Sanjeev Putla, NA. - Microsoft MCSA: BI Reporting (4 days) (22/11/2018 to 25/11/2018)
"Intense but worth it"
R.V.. - Microsoft Dynamics AX 7 Financials (5 days) (19/11/2018 to 23/11/2018)
"Different type of training and it was intense. Covered many topics in express speed. It was a good learning experience. "
John Jesudason. - Microsoft Managing SharePoint Server 2016 (6 days) (19/11/2018 to 24/11/2018)
"The instructor is a great trainer that will help you understand SharePoint much better and get certified."
Anonymous. - Microsoft MCSE: Productivity (SharePoint Server 2016) (6 days) (19/11/2018 to 24/11/2018)
"I have learn a lot of new things in a short time."
A.P.. - Microsoft MCSA: Web Applications (Developing ASP.NET MVC Web 5 Applications) (3 days) (20/11/2018 to 22/11/2018)
"Great Teacher, Interesting Courses and the instructor Is the best"
Jo Van Vosselen. - Microsoft MCSA: Web Applications (Developing ASP.NET MVC Web 5 Applications) (3 days) (13/9/2018 to 15/9/2018)