My thoughts on SQL Server on Linux
Well yesterday was a big day in the SQL Community, Microsoft announced that they will be developing a version of...
2016-03-08
1,762 reads
Well yesterday was a big day in the SQL Community, Microsoft announced that they will be developing a version of...
2016-03-08
1,762 reads
Yesterday Microsoft made the earth shattering news that a version of SQL Server with the “core relational database capabilities” will be...
2016-03-08
417 reads
A few weeks ago I met a couple of my business partners in a moderately upscale restaurant in the Washington,...
2016-03-08
392 reads
Prelude in SQL Minor
Back in late December of 2015, a challenge of sorts was issued by Tim Ford (twitter) to...
2016-03-08 (first published: 2016-03-01)
3,269 reads
When I started working with SQL Server many years ago, SQL Server on Linux was a regular April fool’s day...
2016-03-08
518 reads
Looks outside: pigs are flying!
In an announcement yesterday, SQL Server will be made available on Linux. The private preview of...
2016-03-08
905 reads
It started with a tweet from one the many members of the #sqlfamily who always has something meaningful to say,...
2016-03-07 (first published: 2016-03-01)
1,809 reads
This Wednesday night, not only are we going to be showcasing the technology of the internet with an online presenter...
2016-03-07
444 reads
Continuation from the previous 78 parts, the whole series can be found at http://www.nikoport.com/columnstore/.
Update: In SQL Server 2016 the Nonclustered...
2016-03-07
570 reads
A strange error struck me last week, and this post is all about that. What you normally expect when you run SELECT * FROM sys.messages? The query will return a...
2016-03-07
5 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