Reblog: April 25 to May 1
Photo credit – Jenn and Tony Bot
Sometimes old stuff is just as cool as new stuff. Over the past few years,...
2014-05-02
1,254 reads
Photo credit – Jenn and Tony Bot
Sometimes old stuff is just as cool as new stuff. Over the past few years,...
2014-05-02
1,254 reads
My employer, Red Gate Software, offers a sabbatical to their employees, and this year I’m taking mine. I’ll be gone from...
2014-05-02
1,044 reads
Whoa! Another month gone by already? I guess I better pick a speaker of the month then. I went to...
2014-05-02
1,190 reads
I just received confirmation I will be speaking at SQL Saturday 307 in Iowa City on June 7th!
I will be...
2014-05-02
650 reads
I spent some more time last night thinking about the event and marketing it. Biased I am, but I think...
2014-05-01
634 reads
A good one, one of the better diagrams I’ve seen.
From http://markosrendell.wordpress.com/2014/03/03/practical-benefits-of-continuous-delivery/
Now if we can get tooling and processes to make...
2014-05-01
802 reads
This is a followup to a previous post where I likened SQL Server float datatype to Muhammad Ali. Specifically, I...
2014-05-01 (first published: 2014-04-23)
2,955 reads
One of the OP requested in the forum to find all table details of any database. The details which includes Number...
2014-05-01
1,079 reads
One of the OP requested in the forum to find all table details of any database. The details which includes Number...
2014-05-01
570 reads
Not just for math geeks, logarithms and their inverse functions (the exponentials) can have useful and often unexpected capabilities in...
2014-05-01
2,422 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