FIGlet SQLCLR ASCII Font Art
If you haven’t heard of the name before, you must have seen what it does at some point. FIGlet which...
2014-02-13
1,765 reads
If you haven’t heard of the name before, you must have seen what it does at some point. FIGlet which...
2014-02-13
1,765 reads
Join Us at #NoSQLNow
The third annual NoSQL Now! Conference is the largest vendor-neutral forum focused on NoSQL (Not Only SQL)...
2014-02-13
553 reads
It’s a truism that we should choose the right tool for the job. Everyone says that. And who can disagree?...
2014-02-13
518 reads
The IIT Master of Data Science (MAS DS) is designed for bright, curious students with strong backgrounds in mathematics, computation,...
2014-02-13
364 reads
I’ve been trying out the Melitta Coffee Brewer for a few weeks. Not much to it, it’s just a plastic...
2014-02-13
740 reads
I will start this article with an analogy:
Processing big data with small data technology is like building an 80-story skyscraper...
2014-02-13
249 reads
As a self-taught developer, I’ve never really given any credence to certifications. Certifications in the development arena seem like a way...
2014-02-13
572 reads
With more and more features being added to the SQL Server I started thinking that its friendship with MS Access...
2014-02-13
2,187 reads
Question : Can we do system configuration check with starting SQL Server installation? One of my friend need to submit it...
2014-02-13
3,375 reads
The new and improved version of ASAP Utilities has just been released! Based on the feedback we received, we’ve added...
2014-02-13
233 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