Four steps to identify and relocate an application portfolio to the cloud
Large enterprises looking for ways to modernize and migrate a portfolio of business applications to cloud will need to adopt...
2014-02-11
557 reads
Large enterprises looking for ways to modernize and migrate a portfolio of business applications to cloud will need to adopt...
2014-02-11
557 reads
The Genealogy of Baseball Teams chronicles the origin and evolution of baseball teams from every major league from the inception...
2014-02-11
365 reads
2014-02-11
256 reads
2014-02-11
175 reads
2014-02-11
208 reads
Hey Guys!
I have come across this amazing EXCEL Championship being organized by dezyre.com. They are offering an amazing cash prize!
from...
2014-02-10
326 reads
Microsoft has announced today the general availability of Power BI for Office 365!
Microsoft describes it as: Power BI for Office 365 is...
2014-02-10
812 reads
Today Microsoft has officially announced the release of Power BI for Office 365. You can read the Power BI teams...
2014-02-10
1,429 reads
At a conference recently I had someone ask how they would configure Kerberos for accounts that look like “NT Service\MSSQLServer”...
2014-02-18 (first published: 2014-02-10)
6,004 reads
It’s Monday time for this week’s weekly link round-up. If you want to catch these links “live” (so exciting), follow...
2014-02-10
570 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