Overload & Stress - Part 1
As I gain more experience I've found that stress comes in three forms; stress that is there that you don't...
2009-03-23
582 reads
As I gain more experience I've found that stress comes in three forms; stress that is there that you don't...
2009-03-23
582 reads
SQL Server 2008 introduces "Policy Based Management" (PBM) as a way to better manage your servers. This was a feature...
2009-03-23
2,515 reads
Imagine going to a casino with $100 dollars to gamble. As you enter, you notice a vending machine that sells...
2009-03-22
627 reads
The call for speakers is open through midnight on April 10, 2009, so get busy submitting those abstracts! Work hard...
2009-03-22
746 reads
I've been amazed at the amount of content that I am getting at SQLServerCentral. So far, in 2009, I've received...
2009-03-20
634 reads
I’m not sure how I feel about Amazon invoking the DCMA clause to prevent other e-books from being read on...
2009-03-20
989 reads
I found a cool video on the 37 Signals blog that showed the Audi A4 production process. It’s relatively low...
2009-03-19
778 reads
I was browsing the March 2009 issue of Visual Studio Magazine today and found that it's changing again. It's been...
2009-03-19
777 reads
Starting the summer 2002, for about a year or so, the team and I embarked on a project to develop business...
2009-03-19
973 reads
I've been slowly looking at and experimenting with LinkedIn to see if it has value and if so, how to...
2009-03-19
908 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