Writing Proposals for Training
I had a student recently who said that to get any type of training she had to write a proposal...
2009-12-29
1,544 reads
I had a student recently who said that to get any type of training she had to write a proposal...
2009-12-29
1,544 reads
Nearly anytime you see the command DBCC FREEPROCCACHE mentioned in a blog post, magazine article or book, you get some...
2009-12-28
21,391 reads
These queries (which work on both SQL Server 2005 and 2008) are very handy if you want to know who...
2009-12-28
5,158 reads
Little info about System Resource Database in (SQL Server 2008/2005)
The fifth system database in both versions (SQL Server 2008 - 2005)...
2009-12-28
1,366 reads
Funny the things you don’t think about until you hear someone doing it a different way. In this case it...
2009-12-28
565 reads
I recently had the opportunity to present, Nuggets Found by Mining the Default Trace, for SQLLunch. This was my first...
2009-12-28
342 reads
Midlands PASS is a small user group. We average about 15 people coming to meetings, which is good for Columbia,...
2009-12-28
1,188 reads
I ran across Scratch in a PC World article a while back. It’s a free download from MIT, and is...
2009-12-28
613 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
771 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
734 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