Some Intel Westmere Benchmarks
PCLab.pl has an interesting review and benchmarks of a 3.07GHz Westmere-EP processor (which is the six-core, 32nm successor to the...
2009-11-23
984 reads
PCLab.pl has an interesting review and benchmarks of a 3.07GHz Westmere-EP processor (which is the six-core, 32nm successor to the...
2009-11-23
984 reads
If you have a medium to large database in SQL Server, with lots of stored procedures, functions or views, it...
2009-11-23
509 reads
I can’t wait until Feb 27 when Code Camp is right in my backyard! I just submitted my session for...
2009-11-23
350 reads
My presentation and sample files from SQLSaturday in Orlando are now online for you to download. Check them out at...
2009-11-23
515 reads
Many times when I'm teaching a class or working with a group, they express frustration at the load time for...
2009-11-23
413 reads
Everyone likes to get a project done, but many times in our rush to deploy we bypass some of the...
2009-11-23
418 reads
I haven’t done a car update in some time, and I’d like to get back to them. Surprisingly quite a...
2009-11-23
722 reads
A common question I've been asked a lot lately is how to replace the icon in the Report Manager to...
2009-11-22
14,731 reads
We often take the advice given to us on forums or in articles at face value. Even though the authors...
2009-11-20
4,235 reads
Not all DBAs have the opportunity to attend formal classroom training or attend conferences. While there are many SQL Server...
2009-11-20
934 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