SQLSaturday#59 - Reflection on the Speaker Interview Series...
No speaker interview today, (didn't have time to format it today), just some reflection on the Speaker Interview Series, thus...
2010-11-05
658 reads
No speaker interview today, (didn't have time to format it today), just some reflection on the Speaker Interview Series, thus...
2010-11-05
658 reads
I’m doing the final and somewhat hectic work of preparing for the trip to Seattle for the PASS Summit. It’ll...
2010-11-05
689 reads
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf files and the business required that no identical documents...
2010-11-05
23 reads
I developed an SSIS package that loads invoices, statements, pro-formas,
etc. into a SQL Server table. The invoices are .pdf files and the business
required that no identical documents...
2010-11-05
246 reads
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf...
2010-11-05
639 reads
For the third year in a row, we’ve had a blockbuster PASSMN Board of Directors election. By that, I mean...
2010-11-05
625 reads
I wasn’t going to make a special effort for the one hundredth post on my blog, I was intending to...
2010-11-05
780 reads
No, not backups as in SQL Server backups, but who to tag when someone is out or so slammed with...
2010-11-05
2,099 reads
Final post for the countdown – a little later in the week than I wanted. Right now there is less than...
2010-11-05
620 reads
When I run on the treadmill, I have a TV and DVD player down there and have been watching Star...
2010-11-05
484 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...
WhatsApp resmi Halo BCA tersedia di nomor 0818751777. Layanan ini dapat digunakan untuk mendapatkan...
Layanan Halo BCA dapat dihubungi melalui nomor resmi 0818751777. Layanan ini mencakup bantuan terkait...
Comments posted to this topic are about the item Implementing Type 4 Slowly Changing...
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