MCSA: SQL Server 2012 / 2014
The MCSA SQL Server 2012 certification boot camp is a 9 day comprehensive deep dive into the SQL Server covering topics such as writing queries, administration and data warehousing. This instructor led face to face training camp will teach you the skills needed to support a SQL 2012 environment.
The MCSA SQL boot camp incorporates Microsoft Official Courses:
- 20461 Querying Microsoft SQL Server
- 20462 Administering Microsoft SQL Server Databases
- 20463 Implementing a Data Warehouse with Microsoft SQL Server
While attending this training program – you take three exams to test and certify for the Microsoft Certified Solutions Associate (MCSA): SQL Server 2012 official certification. If your goal is to learn how to use SQL Server 2012 and pass the certification exams (70-461, 70-462 & 70-463) – you’ve found the right place. This course is a hybrid of actual hands on learning combined with focused materials mapped to exam objectives.
70-462: Administering a Microsoft SQL Server 2012 Database
70-463: Implementing Data Warehouses with Microsoft SQL Server 2012
- Introducing Microsoft SQL Server 2012
- Getting Started with SQL Server Management Studio
- Working with SQL Server Management Studio
- Creating and Organizing T-SQL scripts
- Using Books Online
- Describe the architecture and editions of SQL Server 2012.
- Work with SQL Server Management Studio.
- Overview of SQL Azure
- Working with SQL Azure
- Describe the basic features of SQL Azure.
- Provision a SQL Azure server and configure its security.
- Introducing T-SQL
- Understanding Sets
- Understanding Predicate Logic
- Understanding the Logical Order of Operations in SELECT statements
- Executing Basic SELECT Statements
- Executing queries which filter data using predicates
- Executing queries which sort data using ORDER BY
- Describe 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
- Writing Simple SELECT Statements
- Eliminating Duplicates with DISTINCT
- Using Column and Table Aliases
- Writing Simple CASE Expressions
- Write simple SELECT Statements
- Eliminate Duplicates Using Distinct
- Use Table and Column Aliases
- Use a Simple CASE Expression
- Write simple SELECT statements.
- Eliminate duplicates using the DISTINCT clause.
- Use column and table aliases.
- Write simple CASE expressions.
- Understanding Joins
- Querying with Inner Joins
- Querying with Outer Joins
- Querying with Cross Joins and Self Joins
- Writing Queries That Use Inner Joins
- Writing Queries That Use Multiple-Table Inner Join
- Writing Queries That Use Self Joins
- Writing Queries That Use Outer Loins
- Writing Queries That Use Cross Join
- Describe how multiple tables may be queried in a SELECT statement using joins.
- Write queries that use inner joins.
- Write queries that use outer joins.
- Write queries that use self-joins and cross joins.
- Sorting Data
- Filtering Data with a WHERE Clause
- Filtering with the TOP and OFFSET-FETCH Options
- Working with Unknown and Missing Values
- Writing Queries That Filter Data Using a WHERE Clause
- Writing Queries That Filter Data Using an ORDER BY Clause
- Writing Queries That Filter Data Using the TOP Option
- Writing Queries That Filter Data Using the OFFSET-FETCH Clause
- Filter data with predicates in the WHERE clause.
- Sort data using ORDER BY.
- Filter data in the SELECT clause with TOP.
- Filter data with OFFSET and FETCH.
- Introducing SQL Server 2012 Data Types
- Working with Character Data
- Working with Date and Time Data
- Writing Queries That Return Date and Time Data
- Writing Queries That Use Date and Time Functions
- Writing Queries That Return Character Data
- Writing Queries That Use Character Functions
- Describe numeric data types, type precedence and type conversions.
- Write queries using character data types.
- Write queries using date and time data types.
- Writing Queries with Built-In Functions
- Using Conversion Functions
- Using Logical Functions
- Using Functions to Work with NULL
- Write queries which use conversion functions
- Write queries which use logical functions
- Write queries which test for nullability
- Write queries with built-in scalar functions.
- Use conversion functions.
- Use logical functions.
- Use functions that work with NULL.
- Using Aggregate Functions
- Using the GROUP BY Clause
- Filtering Groups with HAVING
- Write queries which use the GROUP BY clause
- Write queries which use aggregate functions
- Write queries which use distinct aggregate functions
- Write queries which filter groups with the HAVING clause
- Write queries which summarize data using built-in aggregate functions.
- Use the GROUP BY clause to arrange rows into groups.
- Use the HAVING clause to filter out groups based on a search condition.
- Writing Self-Contained Subqueries
- Writing Correlated Subqueries
- Using the EXISTS Predicate with Subqueries
- Write queries which use self-contained subqueries
- Write queries which use scalar and multi-result subqueries
- Write queries which use correlated subqueries and EXISTS predicate
- Describe the uses of queries which are nested within other queries.
- Write self-contained subqueries which return scalar or multi-valued results.
- Write correlated subqueries which return scalar or multi-valued results.
- Use the EXISTS predicate to efficiently check for the existence of rows in a subquery.
- Using Derived Tables
- Using Common Table Expressions
- Using Views
- Using Inline Table-Valued Functions
- Write Queries Which Use Views
- Write Queries Which Use Derived Tables
- Write Queries Which Use Common Table Expressions
- Write Queries Which Use Inline Table-Valued Functions
- Write queries which use derived tables.
- Write queries which use common table expressions.
- Create simple views and write queries against them.
- Create simple inline table-valued functions and write queries against them.
- Writing Queries with the UNION Operator
- Using EXCEPT and INTERSECT
- Using APPLY
- Write queries which use UNION set operators and UNION ALL multi-set operators
- Write queries which use CROSS APPLY and OUTER APPLY operators
- Write queries which use EXCEPT and INTERSECT operators
- Write queries which combine data using the UNION operator
- Write queries which compare sets using the INTERSECT and EXCEPT operators
- Write queries which manipulate rows in a table by using APPLY with the results of a derived table or function
- Creating Windows with OVER
- Exploring Window Functions
- Write queries which use ranking functions
- Write queries which use offset functions
- Write queries which use window aggregate functions
- Describe the benefits to using window functions.
- Restrict window functions to rows defined in an OVER clause, including partitions and frames.
- Write queries which use window functions to operate on a window of rows and return ranking, aggregation and offset comparison results.
- Writing Queries with PIVOT and UNPIVOT
- Working with Grouping Sets
- Write queries which use the PIVOT operator
- Write queries which use the UNPIVOT operator
- Write queries which use the GROUPING SETS subclause
- Write queries which pivot and unpivot result sets
- Write queries which specify multiple groupings with grouping sets
- Querying System Catalog Views and Functions
- Executing System Stored Procedures
- Querying Dynamic Management Objects
- Querying System Catalog Views
- Querying System Functions
- Querying System Dynamic Management Views
- Write queries that retrieve system metadata using system views and functions.
- Execute system stored procedures to return system information.
- Write queries that retrieve system metadata and state information using system dynamic management views and functions.
- Querying Data with Stored Procedures
- Passing Parameters to Stored Procedures
- Creating Simple Stored Procedures
- Working with Dynamic SQL
- Use the EXECUTE statement to invoke stored procedures
- Pass parameters to stored procedures
- Execute system stored procedures
- Return results by executing stored procedures.
- Pass parameters to procedures.
- Create simple stored procedures which encapsulate a SELECT statement.
- Construct and execute dynamic SQL with EXEC and sp_executesql.
- T-SQL Programming Elements
- Controlling Program Flow
- Declaring Variables and Delimiting Batches
- Using Control-of-Flow Elements
- Generating Dynamic SQL
- Using Synonyms
- Describe the language elements of T-SQL used for simple programming tasks.
- Describe batches and how they are handled by SQL Server.
- Declare and assign variables and synonyms.
- Use IF and WHILE blocks to control program flow.
- Using TRY / CATCH Blocks
- Working with Error Information
- Redirecting Errors with TRY / CATCH
- Using THROW to Pass an Error Message Back to a Client
- Describe SQL Server's behavior when errors occur in T-SQL code.
- Implement structured exception handling in T-SQL.
- Return information about errors from system objects.
- Raise user-defined errors and pass system errors in T-SQL code.
- Transactions and the Database Engine
- Controlling Transactions
- Controlling transactions with BEGIN, COMMIT, and ROLLBACK
- Adding error handling to a CATCH block
- Describe transactions and the differences between batches and transactions.
- Describe batches and how they are handled by SQL Server.
- Create and manage transactions with transaction control language statements.
- Use SET XACT_ABORT to define SQL Server's handling of transactions outside TRY / CATCH blocks.
- Factors in Query Performance
- Displaying Query Performance Data
- Viewing Query Execution Plans
- Viewing Index Usage and Using SET STATISTICS Statements
- Describe components of well-performing queries.
- Describe the role of indexes and statistics in SQL Server
- Display and interpret basic query plans
- Display and interpret basic query performance data
- Introduction to the SQL Server Platform
- Working with SQL Server Tools
- Configuring SQL Server Services
- Verifying SQL Server Component Installation
- Altering Service Accounts for New Instance
- Enabling Named Pipes Protocol for Both Instances
- Creating an Alias for AdvDev
- Ensuring SQL Browser is Disabled and Configure a Fixed TCP/IP Port (Only if time permits
- Describe the SQL Server Platform.
- Work with SQL Server Tools.
- Configure SQL Server Services.
- Overview of SQL Server Architecture
- Planning Server Resource Requirements
- Pre-installation Testing for SQL Server
- Adjust memory configuration
- Pre-installation Stress Testing
- Check Specific I/O Operations
- Describe the SQL Server architecture.
- Plan for server resource requirements.
- Conduct pre-installation stress testing for SQL Server.
- Preparing to Install SQL Server
- Installing SQL Server
- Upgrading and Automating Installation
- Review installation requirements
- Install the SQL Server instance
- Perform Post-installation Setup and Checks
- Configure Server Memory
- Prepare to install SQL Server.
- Install SQL Server.
- Upgrade and automate the installation of SQL Server.
- Overview of SQL Server Databases
- Working with Files and Filegroups
- Moving Database Files
- Adjust tempdb configuration
- Create the RateTracking database
- Attach the OldProspects database
- Add multiple files to tempdb
- Describe the role and structure of SQL Server databases.
- Work with files and filegroups.
- Move database files within servers and between servers.
- Backup Strategies
- Understanding SQL Server Transaction Logging
- Planning a SQL Server Backup Strategy
- Plan a backup strategy
- Configure Recovery Models
- Review recovery models and strategy
- Describe the critical concepts surrounding backup strategies.
- Explain the transaction logging capabilities within the SQL Server database engine.
- Plan a SQL Server backup strategy.
- Backing up Databases and Transaction Logs
- Managing Database Backups
- Working with Backup Options
- Investigate backup compression
- Transaction log backup
- Differential backup
- Copy-only backup
- Partial backup
- Back up databases and transaction logs.
- Manage database backups.
- Work with more advanced backup options.
- Understanding the Restore Process
- Restoring Databases
- Working with Point-in-time recovery
- Restoring System Databases and Individual Files
- Determine a restore strategy
- Restore the database
- Using STANDBY mode
- Understand the restore process.
- Restore databases.
- Work with Point-in-time Recovery.
- Restore system databases and individual files.
- Transferring Data To/From SQL Server
- Importing and Exporting Table Data
- Inserting Data in Bulk
- Import the Excel spreadsheet
- Import the CSV file
- Create and test an extraction package
- Compare loading performance
- Transfer data to and from SQL Server.
- Import and export table data.
- Insert data in bulk and optimize the bulk insert process.
- Authenticating Connections to SQL Server
- Authorizing Logins to Access Databases
- Authorization Across Servers
- Create Logins
- Correct an Application Login Issue
- Create Database Users
- Correct Access to Restored
- Describe how SQL Server authenticates connections.
- Describe how logins are authorized to access databases.
- Explain the requirements for authorization across servers.
- Working with Server Roles
- Working with Fixed Database Roles
- Creating User-defined Database Roles
- Assign Server Roles
- Assign Fixed Database Roles
- Create and Assign User-defined Database Roles
- Check Role Assignments
- Work with server roles.
- Work with fixed database roles.
- Create user-defined database roles.
- Authorizing User Access to Objects
- Authorizing Users to Execute Code
- Configuring Permissions at the Schema Level
- Assign Schema-level Permissions
- Assign Object-level Permissions
- Test Permissions
- Authorize user access to objects.
- Authorize users to execute code.
- Configure permissions at the schema level.
- Options for Auditing Data Access in SQL
- Implementing SQL Server Audit
- Managing SQL Server Audit
- Determine audit configuration and create audit
- Create server audit specifications
- Create database audit specifications
- Test audit functionality
- Describe the options for auditing data access in SQL Server.
- Implement SQL Server Audit.
- Manage SQL Server Audit.
- Automating SQL Server Management
- Working with SQL Server Agent
- Managing SQL Server Agent Jobs
- Create a Data Extraction Job
- Schedule the Data Extraction Job
- Troubleshoot a Failing Job
- Automate SQL Server Management.
- Work with SQL Server Agent.
- Manage SQL Server Agent jobs.
- Understanding SQL Server Agent Security
- Configuring Credentials
- Configuring Proxy Accounts
- Troubleshoot job execution failure
- Resolve the security issue
- Perform further troubleshooting
- Explain SQL Server Agent security.
- Configure credentials.
- Configure Proxy accounts.
- Configuration of Database Mail
- Monitoring SQL Server Errors
- Configuring Operators, Alerts and Notifications
- Configure Database Mail
- Implement Notifications
- Implement Alerts
- Configure database mail.
- Monitor SQL Server errors.
- Configure operators, alerts and notifications.
- Ensuring Database Integrity
- Maintaining Indexes
- Automating Routine Database Maintenance
- Check database integrity using DBCC CHECKDB
- Correct index fragmentation
- Create a database maintenance plan
- Investigate table lock performance
- Ensure database integrity.
- Maintain indexes.
- Automate routine database maintenance.
- Capturing Activity using SQL Server Profiler
- Improving Performance with the Database Engine Tuning Advisor
- Working with Tracing Options
- Capture a trace using SQL Server Profiler
- Analyze a trace using Database Engine Tuning Advisor
- Configure SQL Trace
- Capture activity using SQL Server Profiler and Extended Events Profiler.
- Improve performance with the Database Engine Tuning Advisor.
- Work with tracing options.
- Monitoring Activity
- Capturing and Managing Performance Data
- Analyzing Collected Performance Data
- Investigating DMVs
- Configure Management Data Warehouse
- Configure Instances for Data Collection
- Work with Data Collector Reports
- Monitor current activity.
- Capture and manage performance data.
- Analyze collected performance data.
- Working with Multiple Servers
- Virtualizing SQL Server
- Deploying and Upgrading Data-Tier Applications
- Configure CMS and execute multi-server queries
- Deploy a data-tier application
- Register and extract a data-tier application
- Upgrade a data-tier application
- Work with multiple servers.
- Describe options for virtualizing SQL Server.
- Deploy and upgrade Data-Tier Applications.
- SQL Server Troubleshooting Methodology
- Resolving Service-related Issues
- Resolving Concurrency Issues
- Resolving Login and Connectivity Issues
- Troubleshoot and resolve SQL Server administrative issues
- Explain SQL Server troubleshooting methodology.
- Resolve service-related issues.
- Resolve concurrency issues.
- Resolve login and connectivity issues.
- Overview of Data Warehousing
- Considerations for a Data Warehouse Solution
- Exploring data sources
- Exploring an ETL solution
- Exploring a data warehouse
- Describe the key elements of a data warehousing solution.
- Describe the key considerations for a data warehousing project.
- Considerations for Building a Data Warehouse
- Data Warehouse Reference Architectures and Appliances
- Describe the main hardware considerations for building a data warehouse.
- Explain how to use reference architectures and data warehouse appliances to create a data warehouse.
- Logical Design for a Data Warehouse
- Physical Design for a Data Warehouse
- Implementing a Star Schema
- Implementing a Snowflake Schema
- Implementing a Time Dimension Table
- Implement a logical design for a data warehouse.
- Implement a physical design for a data warehouse.
- Introduction to ETL with SSIS
- Exploring Source Data
- Implementing Data Flow
- Exploring Source Data
- Transferring Data by Using a Data Flow Task
- Using Transformations in a Data Flow
- Describe the key features of SSIS.
- Explore source data for an ETL solution.
- Implement a data flow using SSIS.
- Introduction to Control Flow
- Creating Dynamic Packages
- Using Containers
- Managing Consistency
- Using Tasks and Precedence in a Control Flow
- Using Variables and Parameters
- Using Containers
- Using Transactions
- Using Checkpoints
- Implement control flow with tasks and precedence constraints.
- Create dynamic packages that include variables and parameters.
- Use containers in a package control flow.
- Enforce consistency with transactions and checkpoints.
- Debugging an SSIS Package
- Logging SSIS Package Events
- Handling Errors in an SSIS Package
- Debugging an SSIS Package
- Logging SSIS Package Execution
- Implementing an Event Handler
- Handling Errors in a Data Flow
- Debug an SSIS package.
- Implement logging for an SSIS package.
- Handle errors in an SSIS package.
- Introduction to Incremental ETL
- Extracting Modified Data
- Loading Modified Data
- Using a DateTime Column to Incrementally Extract Data
- Using a Change Data Capture
- Using Change Tracking
- Using a Lookup Transformation to Insert Dimension Data
- Using a Lookup Transformation to Insert or Update Dimension Data
- Implementing a Slowly Changing Dimension
- Using a MERGE Statement to Load Fact Data
- Describe the considerations for implementing an incremental extract, transform, and load (ETL) solution.
- Use multiple techniques to extract new and modified data from source systems.
- Use multiple techniques to insert new and modified data into a data warehouse.
- Overview of Cloud Data Sources
- SQL Server Database
- The Windows Azure Marketplace
- Creating a SQL Azure Database
- Extracting Data from a SQL Azure Database
- Obtaining Data from the Windows Azure Marketplace
- Describe cloud data scenarios.
- Describe SQL Azure.
- Describe the Windows Azure Marketplace.
- Introduction to Data Quality
- Using Data Quality Services to Cleanse Data
- Using Data Quality Services to Match Data
- Creating a DQS Knowledge Base
- Using a DQS Project to Cleanse Data
- Using DQS in an SSIS Package
- Creating a Matching Policy
- Using a DQS Project to Match Data
- Describe how Data Quality Services can help you manage data quality.
- Use Data Quality Services to cleanse your data.
- Use Data Quality Services to match data.
- Introduction to Master Data Services
- Implementing a Master Data Services Model
- Using the Master Data Services Add-in for Excel
- Creating a Basic Model
- Editing a Model by Using the Master Data Services Add-in for Excel
- Loading Data into a Model
- Enforcing Business Rules
- Consuming Master Data Services Data
- Describe key Master Data Services concepts.
- Implement a Master Data Services model.
- Use the Master Data Services Add-in for Excel to view and modify a model.
- Using Custom Components in SSIS
- Using Scripts in SSIS
- Using a Custom Component
- Using a Script Task
- Describe how custom components can be used to extend SSIS.
- Describe how you can include custom scripts in an SSIS package.
- Overview of SSIS Deployment
- Deploying SSIS Projects
- Planning SSIS Package Execution
- Create a SSIS Catalog
- Deploy an SSIS Project
- Create Environments for an SSIS Solution
- Running an SSIS Package in SQL Server Management Studio
- Scheduling SSIS Packages with SQL Server Agent
- Describe SSIS deployment.
- Explain how to deploy SSIS projects using the project deployment model.
- Plan SSIS package execution.
- Introduction to Business Intelligence
- Introduction to Reporting
- Introduction to Data Analysis
- Exploring a Reporting Services Report
- Exploring a PowerPivot Workbook
- Exploring a Power View Report
- Describe BI and common BI scenarios.
- Explain the key features of SQL Server Reporting Services.
- Explain the key features of SQL Server Analysis Services.