T-SQL Tuesday #61 – Giving Back
It’s that time of month again, the time when we have a day where everyone writes on the same topic.
This...
2014-12-09
659 reads
It’s that time of month again, the time when we have a day where everyone writes on the same topic.
This...
2014-12-09
659 reads
Almost four months ago I posted my goals for the next year in my two year anniversary post. I pretty...
2014-12-09
752 reads
A little over 5 years ago, Adam Machanic (B|T) had this great idea of getting everyone in the SQL Community...
2014-12-09
706 reads
Tis the season for TSQL Tuesday. Not only is it that season again, but it is also the Holiday season. During this season, many people start to think about...
2014-12-09
5 reads
Tis the season for TSQL Tuesday. Not only is it that season again, but it is also the Holiday season.
During...
2014-12-09
751 reads
Tis the Season to Be Jolly, as well as giving,
and T-SQL Tuesday’s timely topic on giving back to the SQL...
2014-12-09
1,776 reads
This month’s PASSHigh Availability and Disaster Recovery virtual chapter presentation is by Edwin Sarmiento ( b | t | l ) entitled “A Lap...
2014-12-08
748 reads
It’s Monday time for this week’s weekly link round-up. If you want to catch these links “live” (so exciting), follow...
2014-12-08
445 reads
I am about to set sail on a new venture with my next official whistle stop. This year has been plenty full of whistle stops and I plan on...
2014-12-08
6 reads
I am about to set sail on a new venture with my next official whistle stop. This year has been...
2014-12-08
806 reads
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...
By Steve Jones
Only a little break for me. I’m actually heading to Las Vegas today for ...
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