2014-01-08
6 reads
2014-01-08
6 reads
2014-01-08
15 reads
The San Francisco SQL Server User Group – Jan 08 2014 Thanks you everyone for attending session, here is the presentation...
2014-01-08
410 reads
The San Francisco SQL Server User Group – Jan 08 2014 Thanks you everyone for attending session, here is the presentation...
2014-01-08
664 reads
Today I presented a session entitled “SQL Server Virtualization 101” for the SQL PASSVirtualization Virtual Chapter. I had a great time...
2014-01-08
840 reads
Today I submitted my Power BI contest entry and I’d love for you to take a look! Here’s a short...
2014-01-08
922 reads
Useful links – I hope you might like it too..
http://www.sqlskills.com/blogs/paul/sqlskills-holiday-gift-to-you-all-2012-insider-videos/
2014-01-08
624 reads
Keep your emails and communications as short as possible.
Make sure you cover everything you absolutely need to, but nothing more....
2014-01-08
400 reads
For those who don’t know, I work for Red Gate Software. I’m not a developer, but I work directly for...
2014-01-15 (first published: 2014-01-08)
2,043 reads
There was a blurb in the Connector today about an eligibility change for voting. The “change” is a requirement to...
2014-01-08
394 reads
By Steve Jones
Thanks for attending my sessions. Resources below: Slides: Using Data API Builder GitHub repo: ...
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...
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