Author Archives: Ing. Jan Zedníček - Data Engineer & Controlling

About Ing. Jan Zedníček - Data Engineer & Controlling

My name is Jan Zednicek, and I have been working as a freelance Data Engineer for roughly 10 years. During this time, I have been publishing case studies and technical guides on this website, targeting professionals, students, and enthusiasts interested in Data Engineering particularly on Microsoft technologies as well as corporate finance and reporting solutions. 🔥 If you found this article helpful, please share it or mention me on your website or Community forum

SQL SELECT DISTINCT – Removing Duplicates from Table = Unique values

SELECT DISTINCT is a command used to show unique records in a table. Its use is broad but it is mainly used to remove duplicities in the records when taking multiple views on data. Hint: If we select more than 1 column, DISTINCT will return unique combinations of selected columns SELECT DISTINCT Syntax Syntax is… Read More »

How to Get Started With Power BI + BI Tools for Excel

Power BI is a cloud technology by Microsoft which enables user to analyze and visualize data easily. Creating reports is a task anyone can do. You do not have to be a programmer to use this tool. You will need just the basic user skills. Undeniable advantage is an ever-growing community, meaning that if a… Read More »

SQL INSERT – Inserting Rows into Database Table (3 methods) + Common mistakes

SQL Command INSERT is suitable for situations when we want to insert entries into the table. Insertion of rows can be done in multiple ways (further description below): You can insert the values that you choose (INSERT INTO … VALUES (value1, value2, …)) You can insert the values into the table using script (SELECT clause… 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 »