Tax Day
A reminder of one of the downsides of working is today: Tax Day. In the US, income tax filing is...
2009-04-15
866 reads
A reminder of one of the downsides of working is today: Tax Day. In the US, income tax filing is...
2009-04-15
866 reads
I happen to notice this in a class recently that I had the rare student - one that could take notes...
2009-04-14
393 reads
I read SQLBatman's post about his first week as an MVP, and it really resonated well with me. I think...
2009-04-14
647 reads
I've been writing a lot about networking lately and my efforts to learn/leverage LinkedIn, and along the way taken a...
2009-04-13
824 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-04-13
290 reads
Time has flown by since my last update, busy time at work and struggling to get that done and find...
2009-04-13
391 reads
Yesterday, I drove the Smart down to Burlington/Colchester, Vermont to meet up with MVP Roman Rehak and speak to the local...
2009-04-13
1,081 reads
I'm embarking on another book project. Not writing this time, but tech editing again. I tech edited a book last...
2009-04-13
622 reads
I’ve often described SQL Server to people new to databases as a data pump.
Just like a water pump, you...
2009-04-13
1,229 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-04-12
304 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