Supporting Khan Academy
Khan Academy is doing a fund raiser and I just donated $10 to help out – my kids have easily gotten...
2015-12-15 (first published: 2015-12-14)
1,735 reads
Khan Academy is doing a fund raiser and I just donated $10 to help out – my kids have easily gotten...
2015-12-15 (first published: 2015-12-14)
1,735 reads
Last week James Rowland-Jones announced that he would be resigning from the PASS Board to accept a position with Microsoft....
2015-12-11 (first published: 2015-12-07)
1,536 reads
For those of you with access to the SQLSaturday admin site (used by event leaders) one of the things you...
2015-12-10
596 reads
This year I was interested to see that they did the Hour of Code in the elementary school my daughter...
2015-12-10
631 reads
This one is live today, it’s about Powershell and restoring databases, based on some scripting I had been working on....
2015-12-03
558 reads
I’m starting the new year with a trip to Nashville for SQLSaturday #480 to do presentation on automating restores. New topic,...
2015-12-03
567 reads
2015-12-03
1,473 reads
I wrote Early Adopters for SQLServerCentral after seeing a comment elsewhere that basically lumped all MVP’s into one category as...
2015-11-25
536 reads
Today we have a guest editorial from Andy Warren that looks at those that run software early in its lifecycle.
2015-11-20
92 reads
Three big things I look for in documentation:
Who to call when it goes wrongWhere to find it the code, especially...
2015-11-19
537 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