SQL Standard Confusion
The whole universe, the well-guarded people—may they all query databases together in a single language!
2022-08-13
263 reads
The whole universe, the well-guarded people—may they all query databases together in a single language!
2022-08-13
263 reads
Grant takes a few lessons for database DR from a nuclear accident in the US.
2022-08-06
99 reads
2022-07-30
328 reads
Today Grant wonders why we spend so much time trying to learn about query tuning.
2022-07-23
298 reads
2022-07-09
172 reads
2022-07-02
85 reads
A new vulnerability for SQL Server is covered by a number of patches this week.
2022-06-18
745 reads
2022-05-28
208 reads
During my technical career, I’ve changed companies several times. I even worked as an independent contractor for three years. One thing I have never done before was switch departments and roles within one company. That’s about to change in a couple of weeks as I move from Simple Talk Editor and DevOps Advocate in Marketing […]
2022-05-21
102 reads
You can find new employment with a little work and choose the best job for you.
2022-05-07
136 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