SQL SERVER 2014 Developer (T-SQL Programming) Training

image

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500.


  • Relational Database Fundamentals
    • Overview of Relational Database Concepts
    • Relational Databases and Relational Database Management Systems
    • Data Normalization
  • Creating a Database
    • Database Development Methodology Overview
    • Building a Logical Data Model
    • Identifying Entities and Attributes
    • Isolating Keys
    • Relationships Between Entities
    • Creating Entity-Relationship Diagrams
    • Transforming to Physical Design
    • Migrating Entities to Tables
    • Selecting Primary Keys
    • Defining Columns
    • Enforcing Relationships with Foreign Keys
    • Constructing the Database Using DDL
    • Creating Tables, Indexes, Constraints and Views
    • Dropping Tables, Indexes, Constraints and Views
    • Modifying Tables, Indexes, Constraints and Views
  • Writing Basic SQL Queries
    • Displaying Table Structures
    • Retrieving Column Data From a Table or View
    • Selecting Unique Values
    • Filtering Rows Using the WHERE Clause
    • Sorting Results Using ORDER BY
    • Joining Multiple Tables
    • Using Column and Table Aliases
  • Manipulating Query Results
    • Using Row Functions
    • Character

    • Numeric

    • Date and Time

    • Data Conversion (CAST and CONVERT)

    • Using the CASE Function

    • Handling Null Values

  • Advanced Query Techniques
    • Inner Joins
    • Outer Joins (Left, Right, Full)
    • Joining a Table to Itself
    • Subqueries
    • Tips for Developing Complex SQL Queries
    • Using Aggregate Functions
    • AVG
    • COUNT
    • SUM
    • MIN
    • MAX
    • Aggregating Results Using GROUP BY
    • Restricting Groups with the HAVING Clause
    • Creating Temporary Tables
  • Complex Queries
    • Using Wildcard Characters with Like
    • Improving SQL Queries with Common Table Expressions (CTE’s)
    • Using the OUTPUT clause
    • Allowing Users to Build SQL Queries Dynamically
  • T-SQL Code Constructs
    • Exploiting the Programming Features of T-SQL
    • Conditional Constructs
    • Looping Constructs
    • Building Multi-Batch Scripts
    • Invoking System Functions
    • Using Variables in Scripts
    • Using Temporary Tables in Scripts
    • Handling Errors
    • Using TRY...CATCH Blocks
    • Using System Variables and Functions
  • User-Defined Functions
    • Definition and Benefits of Use
    • CREATE FUNCTION
    • Syntax
    • RETURN Clause and the RETURNS Statement
    • Scalar vs. Table Functions
    • Comparison with Stored Procedures
    • Returning Scalar Values and Tables
    • ALTER and DROP FUNCTION
  • Triggers
    • Definition and Benefits of Use
    • Alternatives (e.g., Constraints)
    • CREATE TRIGGER
    • Syntax
    • Trigger Types
    • "Inserted" (or "NEW") and "Deleted" (or "OLD") Tables
    • Event Handling and Trigger Execution
    • ALTER and DROP TRIGGER
  • Stored Procedures
    • Definition and Benefits of Use
    • CREATE PROCEDURE
    • Syntax
    • Variables and Parameters
    • Control of Program Flow
    • ALTER and DROP PROCEDURE
    • Implementation Differences
  • Data Manipulation Language (DML)
    • Inserting Data into Tables
    • Updating Existing Data
    • Deleting Records
    • Truncating Tables
    • Implementing Data Integrity with Transactions
    • Beginning Explicit Transactions
    • Committing Transactions
    • Rolling Back Transactions
    • Defining Save Points
  • Using T-SQL Cursors
    • Overview of Cursors
    • Declaring a Cursor
    • Using OPEN CURSOR, CLOSE CURSOR, DEALLOCATE CURSOR Statements
    • FETCHing Results
    • Testing @@FETCH_STATUS and @@CURSOR_ROWS
    • Updating Records with Cursors
  • Views

    • Benefits of Using Views
    • Creating Views
    • ALTER and DROP VIEW
  • Automating Tasks

    • Creating Maintenance Plans
    • Job Creation and Execution
    • Creating Schedules for Jobs