Database Development Made Easy?
Today Steve Jones has a few thoughts on the complexity and cumbersome nature of database development.
2017-08-30
113 reads
Today Steve Jones has a few thoughts on the complexity and cumbersome nature of database development.
2017-08-30
113 reads
Are graph databases worth using? Steve Jones looks at a report that questions their value at this time.
2017-08-28
99 reads
2017-08-28
144 reads
Steve Jones asks you to look forward in your career, perhaps setting goals that move you forward.
2017-08-25
110 reads
2017-08-24
93 reads
2017-08-23
82 reads
There are times when you look back and times when you look forward in your career. Sometimes, however, we might try to push forward too fast.
2017-08-22
73 reads
2017-08-21
89 reads
“I would educate myself, and that I would never stop educating myself. It was my responsibility to keep learning.” Who said that? Albert Einstein? Da Vinci? Stephen Hawking? None of the above. That statement came from the Demon of the rock band KISS, Gene Simmons. If a rock & roll legend knows that it’s on […]
2017-08-21
85 reads
2017-08-18
87 reads
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...
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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