Category Archives: SQL Server

MS SQL Server
MS SQL Server is the software created by Microsoft. It includes a database engine and a number of features that help with database development, maintenance, and various activities such as reporting or master data management.

These features include SQL Server Integration Services, Reporting Services, Analysis Services, and other components such as Master Data Management or Data Quality Services.

Don’t miss out from category:

SQL Server 2016 News and Top Useful Features

SQL Server 2016 Reporting Services SSRS  have changed significantly since their strongly outdated predecessors. Report manager is no longer present and has been replaced by visually attractive web portal thanks to which users are able to define KPI quantities. Mobile report publisher enables user to create reports compatible with mobile phones and tablets and it… Read More »

SSIS | Data Flow Task for Beginners – ETL Data Pump Component with Example

In the last article, I introduced the Control Flow feature. Using control flow we can manage through tasks what SSIS package does. The most frequently used is a Data flow task, which contains data transfer logic (ETL processes). Difference between Control Flow and Data flow task Unfortunately, these 2 terms are often confused. Control flow… Read More »

SSIS | Control Flow – Tasks, Containers and Data Flow – Integration Services (Beginners)

Before introducing Control Flow, let me recap the previous tutorial SSIS | Introduction, BIDS, Project, Package, SSIS Toolbox where I introduced the SQL Server Integration Services (SSIS) feature for SQL Server. My goal was to show beginners a working environment in which we can develop strong data integrations (ETL). Summary of the previous article –… Read More »

SSIS | Integration Services for Beginners – Introduction, BIDS, Project, Package, SSIS Toolbox

This article serves as an introduction to SQL Server Integration Services (SSIS) for SQL Server. It contains information about this function and its basic parts. SQL Server is generally understood mainly as a database platform containing a powerful database engine and client – Management Studio for working with databases. There are a number of editions,… Read More »

SQL | Triggers in SQL Server – Definition, Types, Syntax and Examples

A trigger is a database object (procedure) that works as a watchdog for certain event. Using database triggers we can catch this event and initiate some additional action – such as logging or rejecting the action. Trigger – event that initiates the action What are triggers used for? Triggers are used mainly for auditing objects… Read More »

SQL Server Login – Definition of Server-Level Permissions

In SQL Server administration, there are two terms that can easily be confused: SQL Login and SQL User. While SQL Login allows you to manage permissions for server access, SQL User defines permissions for database access. In this article, we’ll take a closer look at SQL Login. SQL Login It provides access to SQL Server.… Read More »

SSIS Connection Manager + Example of a Simple ETL Data Pump

SQL Server is not just a platform for storing and working with data or databases. It is a suite of services that includes features such as: Reporting Services (SSRS) – report creation and storage, including a report server. Analysis Services (SSAS) – OLAP cubes. Master Data Services (MDS) – management of important data, such as… Read More »