• Post category:StudyBullet-7
  • Reading time:9 mins read


Become an SQL Developer: Build Queries, Create ETL/SSIS Solution, Create reports, create stored procedures

What you will learn

Explore data with SQL | TSQL

Setup SQL Server

Implement ETL | SSIS Solution

Create tabular models with SSAS

Connect to SQL Server with SSMS

Create reports with SSRS

Create and execute stored procedures

Description

SQL is a domain-specific language used in programming and designed for managing data held in a relational database management system, or for stream processing in a relational data stream management system.

T-SQL (Transact-SQL) is a set of programming extensions from Sybase and Microsoft that add several features to the Structured Query Language (SQL), including transaction control, exception and error handling, row processing and declared variables.

All applications that communicate with SQL Server do so by sending T-SQL statements to the server. T-SQL queries include the SELECT statement, selecting columns, labelling output columns, restricting rows and modifying a search condition.

T-SQL identifiers, meanwhile, are used in all databases, servers, and database objects in SQL Server. These include the following tables, constraints, stored procedures, views, columns and data types. T-SQL identifiers must each have a unique name, are assigned when an object is created and are used to identify an object.


Get Instant Notification of New Courses on our Telegram channel.


SQL Server Integration Services is a component of the Microsoft SQL Server database software that can be used to perform a broad range of data migration tasks. SSIS is a platform for data integration and workflow applications. It features a data warehousing tool used for data extraction, transformation, and loading.

SQL Server Reporting Services is a server-based report generating software system from Microsoft. It is part of a suite of Microsoft SQL Server services, including SSAS and SSIS. Administered via a Web interface, it can be used to prepare and deliver a variety of interactive and printed reports.

Microsoft SQL Server Analysis Services is an online analytical processing and data mining tool in Microsoft SQL Server. SSAS is used as a tool by organizations to analyse and make sense of information possibly spread out across multiple databases, or in disparate tables or files.

A stored procedure is a subroutine available to applications that access a relational database management system. Such procedures are stored in the database data dictionary. Uses for stored procedures include data-validation or access-control mechanisms

English
language

Content

Environment Setup

Introduction
What is SSIS
What is ETL
What is SSRS
What is SSAS

SQL Server Setup

What is SQL Server
SQL Server Editions
SQL Server Installation Requirements
Download SQL Server
Install SQL Server
Install SSMS
Connect SSMS to SQL Server
Install Sample Database

Data Exploration with T-SQL | SQL

What is T-SQL
Create a database
Data Preparation
Importing Datasets
How many continents do we have data for
Possibility of dying from COVID
Percent of population infected with COVID
Countries with highest covid infection
Countries with highest covid death
Continents with highest covid deaths
Global covid death
Number of people vaccinated
Query data with CTE
Create temporary tables
Create views

Visual Studio Setup

What is Visual Studio
Visual studio installation requirements
Visual Studio workloads
Installing Visual Studio
Installing SQL Server Data Tools
Installing SSDT Designers for SSIS,SSRS,SSAS

Implementing ETL | SSIS

Create a new integration services project
SSIS Designer
Add and configure a flat connection manager
Remapping column data types
Add and configure OLE DB connection manager
Add a data flow task to the package
Add and configure the flat file source
Add and configure the lookup transformations
Add and configure lookup for datekey transformation
Add and configure OLE DB Destination
Test the package

Creating Reports with SSRS

Create a report server project
Create a report definition file
Configure a data source for the report
Define a dataset for the report
Add a table to the report
Format the report
Group data in the report
Adding totals to the report
Previewing the report
Exporting the report

SSAS – Create a Tabular Model

Logon to SSAS
Create a tabular model project
Explore tabular model authoring
Create connection to data source
Transform and import data
Mark as date table
Create table relationships
Creating calculated columns : part 1
Creating calculated columns : part 2
Creating measures : part 1
Creating measures : part 2
Creating measures : part 3
Creating Key Performance Indicators
Creating Perspectives
Creating Hierarchies : Part 1
Creating Hierarchies : Part 2
What are partitions
Creating partitions
Creating Roles
Analyse data in Excel
Deploying your model
Analysing Model

SQL Stored Procedures

Introduction to stored procedures
Creating stored procedures
Modifying Stored Procedures
Properties page of a stored procedure
Viewing dependencies of a stored procedure
Viewing definition of a stored procedure
Deleting a stored procedure.