Upgraded SSD
I was going to call this an upgraded HDD, but that’s not right. Technically it’s a drive update, but really...
2015-01-19
2,045 reads
I was going to call this an upgraded HDD, but that’s not right. Technically it’s a drive update, but really...
2015-01-19
2,045 reads
The SQLBits conference has a special place in my heart – as I have written before, the previous edition of SQLBits...
2015-01-18
661 reads
A couple of days ago I had the great pleasure to join Boris Hristov in one of his awesome SQL...
2015-01-17
599 reads
There’s a neat switch in SQL Compare that lets you build rollback scripts. It looks like this:
I’ve used this before...
2015-01-16 (first published: 2015-01-07)
6,566 reads
There are probably a common number of apps you pull up when you pull up your system. For example, I...
2015-01-16
638 reads
There are probably a common number of apps you pull up when you pull up your system. For example, I...
2015-01-16
198 reads
The one absolute promise I made about serving on the PASS Board is that I would let you know what...
2015-01-16
529 reads
I sometimes see this when deploying via sqlpackager.exe:
Analyzing deployment plan (Complete) Updating database (Start) Dropping DF_XXX... Creating DF_XXX... Update complete....
2015-01-16
165 reads
I sometimes see this when deploying via sqlpackager.exe:
Analyzing deployment plan (Complete) Updating database (Start) Dropping DF_XXX... Creating DF_XXX... Update complete. Updating database (Complete) Successfully published database.
This happens everytime...
2015-01-16
9 reads
I sometimes see this when deploying via sqlpackager.exe:
Analyzing deployment plan (Complete) Updating database (Start) Dropping DF_XXX... Creating DF_XXX... Update complete....
2015-01-16
54 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