Basic Git for DBAs: What's a Pull Request?
Steve continues his series on Git for DBAs by looking at code review and pull requests.
2022-04-11 (first published: 2020-08-06)
5,198 reads
Steve continues his series on Git for DBAs by looking at code review and pull requests.
2022-04-11 (first published: 2020-08-06)
5,198 reads
This article will cover a basic set of code merges between different branches.
2022-04-11 (first published: 2020-07-23)
4,287 reads
In this article, learn how to work with your repo online at GitHub.
2022-04-11 (first published: 2020-07-14)
5,030 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,714 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,473 reads
2019-08-13
2,753 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,395 reads
Distributed source control is really intimidating: branches, pull requests, merges – will somebody just take my code, for crying out loud? Why does it have to be so complicated and involved?
2019-02-22
3,826 reads
Learn some of the basics of GitHub and how this can be utilized for your SQL Server development projects.
2019-01-09
2,918 reads
By Steve Jones
In a previous post, I deployed a model to a database using SQL Compare...
By SQLPals
Reality (And Limits) of Instant File Initialization for Transaction Logs in SQL Server 2022 ...
By Steve Jones
Last week I spent a few days in Cambridge, UK for the Redgate Company...
Comments posted to this topic are about the item Adding and Dropping Columns II
Comments posted to this topic are about the item Leveraging DuckDB for OLAP Workloads:...
Comments posted to this topic are about the item More Documentation is Needed
I have this table in my SQL Server 2022 database:
CREATE TABLE [dbo].[CityList] ( [CityNameID] [int] NOT NULL IDENTITY(1, 1), [CityName] [varchar] (30) , [Country2] [char] (3), [stateprovince2] [char] (2), [Country] [char] (3), [stateprovince] [char] ) ON [PRIMARY] GOI decide to drop the stateprovince2 and country2 columns. What code should I use? See possible answers