Information Schema Strangeness
An extra column in an information_schema view had Steve digging into standards.
2023-04-05
174 reads
An extra column in an information_schema view had Steve digging into standards.
2023-04-05
174 reads
2023-04-05
562 reads
There is a survey from the WIT group for female speakers. If you are a woman and speak in front of groups, or used to, please fill it out....
2023-04-05
42 reads
2023-04-03
557 reads
The grade for March is also D. Details below, but just not making a lot of progress in these areas. In fact, I find myself not motivated to work...
2023-04-03
15 reads
Steve has to use software that is broken, but it's OK. It actually works well enough.
2023-04-03
117 reads
This week Steve found a question of whether SQL Server 2019 uses more CPU than 2016.
2023-04-01
721 reads
Steve thinks building a brand is important in today's competitive world of job seekers.
2023-03-31
125 reads
2023-03-31
347 reads
It’s time for T-SQL Tuesday again, and this time there is an interesting invitation. Damien Jones reached out and wanted to host, so he gets to pick the topic...
2023-03-31 (first published: 2023-03-14)
266 reads
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers