The Math on Automation
Is it worth automating things? Many people say yes, but Steve Jones says it isn't just about time saved.
2016-03-16
151 reads
Is it worth automating things? Many people say yes, but Steve Jones says it isn't just about time saved.
2016-03-16
151 reads
There was an announcement last week that SQL Server can run on Linux. And it's coming next year.
2016-03-15
354 reads
2016-03-14
116 reads
2016-03-11
137 reads
Steve Jones discusses the idea of building software better, and why that's a challenge for many of us.
2016-03-10
115 reads
Slack has become a popular phenomenon in the technical world, especially for software developers. Should we join in?
2016-03-09
231 reads
In a couple of days, Microsoft is holding Data Driven, an event that will highlight SQL Server 2016.
2016-03-08
111 reads
2016-03-07
315 reads
SMO gives every appearance of being a great example of over-reliance on automated testing at the expense of manual exploratory testing.
2016-03-07
69 reads
Today we have a guest editorial from Andy Warren that examines the costs of family at work.
2016-03-04
177 reads
By Steve Jones
Thanks for attending my sessions. Resources below: Slides: Using Data API Builder GitHub repo: ...
By Steve Jones
Thanks to everyone that attended my sessions at VS Live San Diego yesterday. It...
By Steve Jones
I was creating a question on sp_readerrorlog and realized that this procedure is different...
Comments posted to this topic are about the item Implementing Type 4 Slowly Changing...
Comments posted to this topic are about the item The Disabled Index
Comments posted to this topic are about the item Server-Level Table sizes
I run this code on SQL Server 2022.
CREATE TABLE Drink
(
drinkid INT NOT NULL
CONSTRAINT DrinkPK PRIMARY KEY CLUSTERED,
drinkname VARCHAR(20),
rating NUMERIC(2, 1)
)
GO
INSERT INTO Drink
(
drinkid,
drinkname,
rating
)
VALUES
(1, 'Margarita', 4.5),
(2, 'Mojito', 4.3),
(3, 'Old Fashioned', 4.7),
(4, 'Martini', 4.4),
(5, 'Cosmopolitan', 4.2)
GO
ALTER INDEX drinkpk ON dbo.drink DISABLE
GO
SELECT * FROM dbo.Drink
GO
What is the result? See possible answers