Basic Git for DBAs: Merging Code Between Branches
This article will cover a basic set of code merges between different branches.
2022-04-11 (first published: 2020-07-23)
4,288 reads
This article will cover a basic set of code merges between different branches.
2022-04-11 (first published: 2020-07-23)
4,288 reads
In this article, learn how to work with your repo online at GitHub.
2022-04-11 (first published: 2020-07-14)
5,032 reads
Learn what a branch is in git and how you can create these, share them, and begin working with copies of your code.
2022-04-11 (first published: 2020-06-16)
7,718 reads
This is the second article in a series on the basics of using Git. The other articles in the series are: Basic Git for DBAs: Getting Started with Git Basic Git for DBAs: Sharing Files Through GitHub Basic Git for DBAs: the Basics of Branches Basic Git for DBAs: Making Changes in GitHub Basic Git […]
2022-04-11 (first published: 2020-06-09)
6,477 reads
Learn the basics of Git in this article if you've never used this version control system before. We will cover setting up a repo, adding files, changing them, and getting your history.
2022-04-20 (first published: 2020-06-08)
25,694 reads
Today Kendra discusses the advantages of using a command line interface for Git.
2020-01-16
422 reads
2019-12-03
2019-08-13
2,760 reads
Using a VCS is a core skill, according to Steve. One part of that is learning to write better commit messages.
2019-07-08
477 reads
In this article, we will examine how to use Azure Data Studio with a git repository for storing code.
2024-01-09 (first published: 2019-05-14)
10,400 reads
A while back I wrote a quick post on setting up key mappings in...
By Steve Jones
In 100 years a lot of what we take to be true now will...
By Steve Jones
I haven’t done one of these in awhile, but I saw an article recently...
Hi, i'm running vs2022. I'm trying out a c# script that i'd like to...
Comments posted to this topic are about the item Missing the Jaro Winkler Distance
I upgraded a SQL Server 2019 instance to SQL Server 2025. I wanted to test the fuzzy string search functions. I run this code:
SELECT JARO_WINKLER_DISTANCE('tim', 'tom')
I get this error message:Msg 195, Level 15, State 10, Line 1 'JARO_WINKLER_DISTANCE' is not a recognized built-in function name.What is wrong? See possible answers