Power Testing ETL with Power BI – The Process
This is a short blog series on using Power BI tools to support testing ETL processes. I have presented on...
2014-11-11
1,290 reads
This is a short blog series on using Power BI tools to support testing ETL processes. I have presented on...
2014-11-11
1,290 reads
As many of you know creating a SharePoint farm for testing can be a daunting task. I volunteered to help...
2014-10-16
788 reads
Part of the reason I have a blog is to document issues and resolutions I do not want to forget....
2014-10-15
539 reads
This is a temporary post that was not deleted. Please delete this manually. (e5bad5db-3b7d-4641-ba91-15ab900e8f70 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2014-10-09
417 reads
In March of this year, I celebrated 10 years at Magenic. I blogged about it and called out values and...
2014-10-05
480 reads
This is a reprint with some revisions of a series I originally published on LessThanDot. You can find the links...
2014-07-24 (first published: 2014-07-17)
11,164 reads
This is a reprint with some revisions of a series I originally published on LessThanDot. You can find the links...
2014-07-07
1,763 reads
If you are in the USA, I hope you take some time today to enjoy your family and friends and...
2014-07-04
667 reads
This is a reprint with some revisions of a series I originally published on LessThanDot. You can find the links...
2014-06-26
1,256 reads
This is a reprint with some revisions of a series I originally published on LessThanDot. You can find the links...
2014-06-26
2,738 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