Testing
We know that software testing is important, but we often don't do a great job of executing. Steve Jones talk database testing today.
2015-01-13
235 reads
We know that software testing is important, but we often don't do a great job of executing. Steve Jones talk database testing today.
2015-01-13
235 reads
An interesting new paradigm popped up in the news this week: the data lake. It examines data as a model for organizational architectures.
2015-01-12
211 reads
This Friday Steve Jones looks at your backup system and wonders how many people use striped backups.
2015-01-09
441 reads
Verizon is taking their cloud service offline for maintenance for two days. Steve Jones doesn't think that sounds good.
2015-01-08
224 reads
One of the important things is to be able to recover your environment. That doesn't mean you need to know everything about SQL Server and potential disasters, but you should know their affect on your situation.
2015-01-07
132 reads
When you deploy software, what do you do if things don't go well? Steve Jones talks about a few options you might have.
2015-01-06
128 reads
Conference travel enhances our minds with more than just SQL. It exposes us to new cultures, people and possibilities.
2015-01-05
145 reads
What helps people be successful in a company? Perhaps a little analytic work can help employers determine this.
2015-01-05
232 reads
Steve Jones looks forward to the new year and asks in this poll what you think will happen.
2015-01-02
139 reads
2015-01-01
535 reads
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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...
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