Broken or Just Bent? #passvotes
Though things have died down a bit since the initial backlash, the recent development in the PASS board election process...
2010-09-14
694 reads
Though things have died down a bit since the initial backlash, the recent development in the PASS board election process...
2010-09-14
694 reads
I don’t like there being an easy command to shrink databases, and I especially don’t like seeing the shrink option...
2010-09-14
5,634 reads
I’ll have a longer post next week about my own risk strategy, but I wanted to write this first, both...
2010-09-14
614 reads
The theme for this month's T-SQL Tuesday is indexes so it seemed like the perfect excuse to blog about a script that I have written to see what choices...
2010-09-14
5 reads
The theme for this month’s T-SQL Tuesday is indexes so it seemed like the perfect excuse to blog about a...
2010-09-14
845 reads
The theme for this month's T-SQL Tuesday is indexes so it seemed like the perfect excuse to blog about a script that I have written to see what choices...
2010-09-14
34 reads
Or “If one index is good, surely many indexes (indexes? indices? indi?) will be better”
This is a question that comes...
2010-09-14
1,576 reads
If you haven’t voted I hope you will. Ballots were sent out via email to those members eligible to vote....
2010-09-14
551 reads
Live Meeting: https://www.livemeeting.com/cc/usergroups/join?id=NQ65ZG&role=attend
Mini-Session
Topic: Using PIVOT – Going from Static to Dynamic
Sometimes data normalization results in a data structure that is not convenient for...
2010-09-14
458 reads
2010-09-14
744 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