TSQL Tuesday #150 – My first technical job
It’s that time of the month again, the blog party, woohoo! This time Kenneth Fisher (b | t) has invited us to blog about our first tech job. Oh...
2022-05-30 (first published: 2022-05-10)
178 reads
It’s that time of the month again, the blog party, woohoo! This time Kenneth Fisher (b | t) has invited us to blog about our first tech job. Oh...
2022-05-30 (first published: 2022-05-10)
178 reads
Recently I spent months of my lift working on STIG and CIS compliance at my job and one of those tasks was setting up SQL Audit for STIG. Now,...
2022-04-29 (first published: 2022-04-18)
2,739 reads
Well back at the end of 2019 I finished writing most of the checks related to the CIS Center for Internet Security requirements. I have yet to write a...
2022-02-02 (first published: 2022-01-21)
2,322 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
7 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
6 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
30 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
6 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
20 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
6 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
10 reads
By Steve Jones
We’re a week late, once again my fault. I was still coming out of...
By Steve Jones
I ran across this article recently (https://www.gatesnotes.com/meet-bill/source-code/reader/microsoft-original-source-code) and it has a great opening piece...
By Steve Jones
I’m in the UK today, having arrived this morning in London. Hopefully, by this...
Comments posted to this topic are about the item Learning From Breakage
Comments posted to this topic are about the item Python in Action to Auto-Generate...
Comments posted to this topic are about the item Adding and Dropping Columns I
I have this table in my SQL Server 2022 database:
CREATE TABLE [dbo].[CityList] ( [CityNameID] [int] NOT NULL IDENTITY(1, 1), [CityName] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) ON [PRIMARY] GOI decide to add two new columns for the StateProvince and Country. What code should I use? See possible answers