Brush Up on Your ETL Skills
The need for data imports, exports, and transformations seems to be growing.
2018-02-21
174 reads
The need for data imports, exports, and transformations seems to be growing.
2018-02-21
174 reads
2018-02-20
75 reads
The origins of PASS have shaped its culture for years. Are you doing the same in your organization?
2018-02-19
92 reads
Extended Events is a much more complex system and profiler, and the use of templates can reduce the complexity
2018-02-16
53 reads
Perseverance and continued effort, even when you lack knowledge or skill is extremely valuable for a technology professional.
2018-02-15
127 reads
Today Steve Jones asks about how your relationship is at work.
2018-02-14
94 reads
2018-02-13
55 reads
Sometimes a database can seem to be as willful as a colt. Taming it requires an iron nerve, and unflinching eye contact. Occasionally though, you need to know when to jump the fence and regroup.
2018-02-12
83 reads
Many of us have scripts that we run in SQL Agent jobs, but Steve wonders if we really treat them like production code.
2018-02-12
106 reads
Steve loves to read all sorts of books and is asking what books you'd read professionally or for fun in 2018.
2018-02-09
96 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