Why We Need Backups First
This week Steve Jones notes that backups aren't the most important thing for your data. Restores are.
2016-09-19
107 reads
This week Steve Jones notes that backups aren't the most important thing for your data. Restores are.
2016-09-19
107 reads
2016-09-16
1,127 reads
Data Science is a hot area and one to which quite a few people would like to move. Steve Jones has some thoughts on trying to get certified in this area.
2016-09-15
168 reads
I tend to try and get code on the screen quickly and then start to remove things. I’m a visual...
2016-09-15
617 reads
2016-09-15
1,239 reads
2016-09-14
130 reads
2016-09-14
1,246 reads
Another alliteration post. Maybe I’ll make all my titles tongue twisters to test your talents?
This is my new favorite session....
2016-09-13
639 reads
Protecting the keys used for encrypion can really matter for companies, and in today's complex world, that can be difficult. Monitoring becomes important to helping here.
2016-09-13
74 reads
It’s T-SQL Tuesday time and this month we have Jeffrey Verheul giving us the topic of the cloud, or Azure...
2016-09-13
600 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