2019-01-07
138 reads
2019-01-07
138 reads
2018-11-15
702 reads
As DBA's we are often looking for issues and hole is things, but it is also important to see positives and seek a better solution.
2018-10-18
71 reads
I needed to speed up some regression testing. Redgate Sql Data compare API helped me do it.
2018-10-16
1,371 reads
In larger shops with multiple database servers, it is very important to have consistency.
2018-10-12
164 reads
It is important to train new people, so what is the best way to go about doing it?
2018-09-06
367 reads
When we risk failure, we also have the opportunity for success, so try something new today.
2018-08-30
83 reads
In many ways job titles matter, just not when telling a stranger what you do for work.
2018-07-30
474 reads
Normalization is important for relational databases, but sometimes too much of a good thing can be bad.
2018-07-23
2,470 reads
2018-05-17
109 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