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,275 reads
This article will cover a basic set of code merges between different branches.
2022-04-11 (first published: 2020-07-23)
4,275 reads
In this article, learn how to work with your repo online at GitHub.
2022-04-11 (first published: 2020-07-14)
5,013 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,663 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,463 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,613 reads
Today Kendra discusses the advantages of using a command line interface for Git.
2020-01-16
418 reads
2019-12-03
2019-08-13
2,735 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
466 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,366 reads
Do you know if your SQL Server is really running at its best? To...
You can find the slides of my session on the €100 DWH in Azure...
By Steve Jones
This value is something that I still hear today: our best work is done...
Hi everyone I am writing an SP where there is logic inside the SP...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers