The Subtle Push to the Cloud
There's a push to the cloud from Microsoft, and Steve Jones has a few thoughts. Have you warmed up to the cloud at all?
2014-04-29
176 reads
There's a push to the cloud from Microsoft, and Steve Jones has a few thoughts. Have you warmed up to the cloud at all?
2014-04-29
176 reads
Trying to take the time to fix sub-par processes has some surprising parallels in nature.
2014-04-28
186 reads
What problems occur because of the algorithm chosen to generate data? A new report says that social security numbers in the US can be predicted. Steve Jones has a few warnings about what algoriothms you choose.
2014-04-28 (first published: 2009-07-27)
368 reads
This week Steve Jones asks about how important reading is to you, and also about what our digital rights might be in a world where we have connected platforms.
2014-04-25 (first published: 2009-07-24)
167 reads
The MCM certification program has been abandoned by Microsoft. Steve Jones thinks the material can still be useful for the community.
2014-04-23
269 reads
How can you perform due diligence on new employees? There are a variety of ways, but Steve Jones has an idea that might help you nudge a potential employer in the direction you want them to move.
2014-04-22
423 reads
Steve Jones is putting out an open call for guest editorial pieces in the spring of 2014. If you're interested, read on.
2014-04-22 (first published: 2014-02-27)
1,252 reads
Consolidating SQL Server instances is something Steve Jones has done in the past and he thinks we'll all do more of in the future.
2014-04-21
152 reads
Twitter is working on a new database that can handle unstructured as well as structured data well. Is this a competitor for SQL Server?
2014-04-17
311 reads
2014-04-16
746 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
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