2023-05-26
327 reads
2023-05-26
327 reads
2023-05-19
541 reads
2023-05-03
497 reads
See how the new, open-source sqlcmd works with containers to kickstart the development experience.
2023-04-28
3,210 reads
Steve takes a look at go-sqlcmd, the newest evolution of the sqlcmd command line tool.
2023-04-21
7,992 reads
2022-04-20
630 reads
2019-11-18
1,250 reads
2019-03-18
593 reads
2019-03-11
607 reads
2017-08-24
958 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