Importance of Best Practices in database programming
For any programming language, just writing the code is not well enough. It should be written using the best practices....
2015-02-01
4,150 reads
For any programming language, just writing the code is not well enough. It should be written using the best practices....
2015-02-01
4,150 reads
It’s Friday, time to look back at the most popular RealSQLGuy posts of the week. Because it’s Friday and you’re...
2015-01-30
925 reads
I’m traveling next week to the SQL Konferenz in Germany, and then on to Red Gate in the UK.
However,...
2015-01-30
1,367 reads
TweetG’day,
Well, it was only a few days ago that I blogged about some major Azure SQL Database enhancements. Primarily, in...
2015-01-30
2,320 reads
Parents, you know that feeling you get after you’ve brought home that brand new baby (or in my case, babies) where...
2015-01-30 (first published: 2015-01-26)
6,352 reads
By Steve Bolton
…………In the last three installments of this amateur series of mistutorials on finding outliers using SQL Server, we...
2015-01-30
2,546 reads
Let’s just start with the last three years have been fantastic! This blog post is a slight deviation from the technical content on my blog. We’re going to focus...
2015-01-30
4 reads
Let’s just start withthe last three years have been fantastic! This blog post is a slight deviation from the technical...
2015-01-30
739 reads
I am pleased to announce that I have an upcoming preconference training session on Friday, February 27th, the Friday before...
2015-01-30
1,154 reads
Reading Time: 3 minutesBeing on the edge of a cliff is a common feeling when running a small business
Stepping Back
I...
2015-01-30
1,239 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