2022-06-27
173 reads
2022-06-27
173 reads
I've just finished working in my fourth shared work space. I am not a fan. The endless hallways with all these little glassed in rooms where I can see everyone, and everyone can see me, are not my favorite places. I can see white boards with content that maybe I shouldn't be seeing. There are […]
2022-06-25
162 reads
Long term data storage isn't something we always need for databases, but it is something the world needs. A new technology has promise for those use cases, both in durability and preserving the algorithms needed.
2022-06-24
383 reads
The pandemic has meant a lot of people started new jobs remotely. Steve has a few thoughts on this process.
2022-06-22
198 reads
Learning to better display the information contained in our data is a skill. Steve has a few thoughts today on learning to improve this for himself.
2022-06-20
134 reads
A new vulnerability for SQL Server is covered by a number of patches this week.
2022-06-18
747 reads
2022-06-17
121 reads
Steve has some advice on how to be a better DBA, or really better at whatever career you choose.
2022-06-15
263 reads
These days we often have multiple applications that need to exchange data in use by customers. Steve shares a few thoughts on his recent experiences.
2022-06-13
141 reads
Steve has a few thoughts on building your own PC to help you with work or your career.
2022-06-10
235 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