Getting Random Results Posted on SSC
I previously blogged about using newid() to get random ordering and after chatting with Steve about it, decided to write...
2007-08-30
1,344 reads
I previously blogged about using newid() to get random ordering and after chatting with Steve about it, decided to write...
2007-08-30
1,344 reads
I went and cleaned out the Central Publishing Group colocation cage at Viawest. We've been there for 3 years and...
2007-08-30
1,410 reads
It's an interesting debate on blogging in response to my editorial. I definitely thing blogging is worth a try. You...
2007-08-28
1,485 reads
I attended for the morning and Brian attended in the afternoon and did a session as well. It was interesting...
2007-08-27
1,321 reads
Our one day free SQL Server event is slowly gaining momentum! Draft schedule is at http://www.sqlsaturday.com/schedule.aspx. 30 sessions total and...
2007-08-27
1,572 reads
Actually we had a long meeting with the developers this morning and PMs over a remote desktop session and I...
2007-08-24
1,387 reads
Working with developers is always very interesting, especially when you are a client. I'm sure that I'm not the best...
2007-08-21
1,410 reads
Book reviews aren't easy and it's always hard to tell if you're telling the reader anything they can't learn from...
2007-08-17
1,349 reads
We went for a site visit Tues and I think it will really work out well for us. Good parking,...
2007-08-17
1,396 reads
I live in Denver. That's in the Mountain time zone, either MDT or MST depending on the time of year,...
2007-08-14
1,429 reads
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...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
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