Speaking at Upcoming SQL Saturday events
I’ve got a couple of speaking engagements coming up during the next few months, and a few others I’m hoping...
2010-04-21
575 reads
I’ve got a couple of speaking engagements coming up during the next few months, and a few others I’m hoping...
2010-04-21
575 reads
Really short post here. I just found out that Stacia Misner (blog |blog 2 | @StaciaMisner) and Ross Mistry have released...
2010-04-21
568 reads
Just for info that SQL Server 2008 R2 (32bit & 64bit) is available now and you can download the trial
http://bit.ly/18gCbc
*...
2010-04-21
633 reads
SQL Server 2008 R2, it comes with new editions and lot of new features, also supporting the SQL Azure & PowerPivot...
2010-04-21
1,381 reads
Microsoft scheduled a conference call this morning, and I jumped on since I was laid up in bed with a...
2010-04-21
1,691 reads
FINALLY!
It’s not like Don Gabor had the article done in January or anything…oh wait. He did have the article done...
2010-04-21
690 reads
We just put the site up, starting a little earlier than last year, and over the course of this week...
2010-04-21
497 reads
If you weren't aware, Microsoft held a BI telelconference today which announced the release to manufacturing (RTM) of SQL Server...
2010-04-21
1,185 reads
For the last two years or so, in one capacity or another I have been running SQL Server in virtual...
2010-04-21
655 reads
The DMV for Day 20 is sys.dm_exec_cached_plans which is described by BOL as:
Returns a row for each query plan that...
2010-04-20
1,090 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