gdpr - panic part 4
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
101 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
101 reads
In the first part of this series, we looked at where to find out more information about GDPR in the UK (hint: The ICO.gov website has everything you need)....
2018-02-08
6 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
114 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
34 reads
Performance tuning is one of those things that is hard to get right when you do not have an established...
2018-02-08 (first published: 2018-01-30)
3,524 reads
I work for Redgate and write about products. I’ve got a series of SQL Prompt posts here on little things...
2018-02-08 (first published: 2018-01-29)
1,604 reads
sp_AGReconfigure 1.1 is now available HERE and on GitHub
V1.1 includes a new Parameter and some minor bug fixes:
@Readable
NULL – DEFAULT: ...
2018-02-08
380 reads
For the last 7 years, I have been speaking at the PASS Summit. This event is usually in Seattle, but one year it was in Denver (did not speak...
2018-02-08
4 reads
For the last 7 years, I have been speaking at the PASSSummit. This event is usually in Seattle, but one...
2018-02-08
325 reads
More and more companies are considering a move to the cloud, but one aspect of such a migration that may...
2018-02-07
329 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