Learning Isn’t Easy, But It’s Vital
This week Grant notes that we need to work on our learning skills, especially as the world continues to drive forward.
2020-08-29
203 reads
This week Grant notes that we need to work on our learning skills, especially as the world continues to drive forward.
2020-08-29
203 reads
This week Steve wonders if you're want to tackle an exciting project for a day or a week.
2020-08-28
95 reads
Steve doesn't think microservices work with relational databases, but maybe you can convince him otherwise.
2020-08-27
273 reads
DevOps can help provide better security for your databases.
2020-08-26
85 reads
The ability to analyze lots of data on a workstation can be a way to test things without overloading server systems until you are sure your code works.
2020-08-25
133 reads
Steve looks at some of the software development trends from last year, and if they apply today.
2020-08-24
202 reads
One of the finest songs of the sixties had the following lines … "Sitting one day by myself, And I'm thinking, "What could be wrong?" When this funny little Hedgehog comes running up to me, And it starts up to sing me this song. Oh, you know all the words, and you sung all the […]
2020-08-22
370 reads
Today Steve asks about the people that might be critical in your organization.
2020-08-21
159 reads
The challenges of large scale administration can be complex, but the more we share, the more we help others learn and better manage systems.
2020-08-20
85 reads
2020-08-19
117 reads
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
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