2021-05-28
156 reads
2021-05-28
156 reads
Forcing users to agree to a new EULA or removing features seems like a bad idea to Steve.
2021-05-26
164 reads
Steve looks at a technique that some think will allow more data to be used in research and training.
2021-05-24
112 reads
2021-05-22
142 reads
Both Python and R have become very popular languages in the last few years, especially among data professionals. Which should you learn or use? Steve has a few thoughts.
2021-05-21
408 reads
2021-05-19
216 reads
2021-05-17
225 reads
Of all the valuable attributes of a DBA, from passion to humility to practicality, perhaps one of the most important attributes may turn out to be the most seemingly nebulous: foresight. According to Free Dictionary, foresight is the "perception of the significance and nature of events before they have occurred". Foresight does not come naturally to most people, as the […]
2021-05-15
316 reads
2021-05-14
243 reads
Being prepared for a disaster might mean having a way to collect data when something occurs.
2021-05-12
249 reads
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
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