Notes on the March 11, 2009 Orlando SQL Meeting
We just had our bi-monthly SQL group meeting (www.opass.org) with Kendal Van Dyke presenting The Truth About Disk Performance & Configuration,...
2009-03-16
566 reads
We just had our bi-monthly SQL group meeting (www.opass.org) with Kendal Van Dyke presenting The Truth About Disk Performance & Configuration,...
2009-03-16
566 reads
One of the videos I did for JumpStart TV is up on the front page:
SQL Server Authentication Modes
It is an...
2009-03-16
1,138 reads
Had a note from Ken Starnes in Portland, the date for SQLSaturday #12 has changed to June 6th (same date...
2009-03-16
591 reads
I have to admit, after the news of AIG bonuses over the weekend, this looks bad. In fact, it annoys...
2009-03-16
773 reads
In response to former Quebec Premier Bernard Landry’s comments of this past week regarding the posting of Michael Sabia as...
2009-03-15
4,328 reads
I was looking at Twitter the other day and saw a few of the people I follow debating the need...
2009-03-13
798 reads
Yesterday evening I gave a talk about Grouping Sets in SQL 2008 thanks in part to the original front-page blog post...
2009-03-13
648 reads
Last night I was at the store with Delaney after karate and he mentioned that we needed to go pick...
2009-03-13
861 reads
This year, I was asked to participate on the PASS Program Committee Management team as the “Speaker Manager.” One of...
2009-03-13
843 reads
Last week I was in Seattle, so I decided to stay an extra day and drive up to Vancouver to...
2009-03-12
637 reads
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...
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
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