Load a custom Assembly in SQL Server Integration Services (SSIS) Script Task that is not or cannot be stored in the GAC
If you need to reference a custom assembly from a SSIS Script Task, the recommended and easiest way is to…
Azurite emulator – emulating Azure Blob, Queue and Table services in your local environment
The Azurite emulator for local Azure Storage development is well documented from Microsoft. Use the Azurite emulator for local Azure…
Asynchronous Programming in C#
In this post I want to summarize and collect some informations about Asynchronous Programming in C#. This topic is well…
Using a generic List with a custom data type in C#
In my previous post I described how to create an array with a custom data type we declared in a…
Using an array with a custom data type in C#
Generally an array cannot store data from different types like int and string as in contrast to lists. Therefore in…
Using List Tuples in C#
In most cases for storing data using a generic List<T> over an array is more suitable and lists offers more…
Accessing Azure Storage Account File Shares from C# Applications
Azure Storage File Shares client library for .NET – Version 12.4.0https://docs.microsoft.com/en-us/dotnet/api/overview/azure/storage.files.shares-readme Azure File Shares offers fully managed file shares in…
Create a C# Console App (.NET Framework) to export Mail Attachments from an Exchange Mailbox
First we need to install two Exchange Assemblies with the NuGet Package Manager, in order to have an API to…
SQL Server Integration Services (SSIS) Basics – Script Task
I will using SQL Server 2019 and Visual Studio 2019 with SQL Server Integrations Services Projects installed to demonstrate the…
SQL Server Integration Services (SSIS) Basics – Load Data from a MySQL Database into SQL Server
I will using SQL Server 2019 and Visual Studio 2019 with SQL Server Integrations Services Projects installed to demonstrate SSIS…