SSIS and incremental load with CDC

These YouTube videos are useful if you want to learn how to use SSIS with SQL Server CDC:

SSIS Incremental load with SQL Server Change Data Capture (CDC)
incremental load in ssis | change data capture in ssis | ssis tutorial Part 61
change data capture in ssis | Change data capture Initial Load |ssis tutorial Part 62
Change data capture Incremental Load | ssis tutorial part 63

Debugging .NET Containers with Visual Studio Code Docker Tools

Git Cherry Pick Tutorial

#create a release branch from master
git checkout -b release/1.0.5 master


# get the logs for the source branch we want to cherry pick from
git log develop --oneline


# this is the merge commit for DATA-506
951c3f9 (HEAD -> develop, origin/develop, origin/HEAD) Merge pull request #128 from artnetworldwide/feature/DATA-506


# checkout the destination branch (release/1.0.5), in case we switched branches
git checkout release/1.0.5

# cherry pick
# apply the changes introduced by the commit to the current branch (release/1.0.5)
# it creates a new commit
git cherry-pick 951c3f9


# cherry pick for multiple commits
git cherry-pick HASH1 HASH2 HASH2

Creating parameterised tests in xUnit with

https://andrewlock.net/creating-parameterised-tests-in-xunit-with-inlinedata-classdata-and-memberdata/

How to reset, revert, and return to previous states in Git

https://opensource.com/article/18/6/git-reset-revert-rebase-commands

SQL Server Integration Services SSIS 2016 Tutorial

https://www.mssqltips.com/sqlservertutorial/9053/sql-server-integration-services-ssis-2016-tutorial/