Your presentation matters! Do it right!
This weekend I was invited over at SQLSaturday Oslo to speak about SQL Server Indexing. I ran into Boris Hristov...
2015-08-31
890 reads
This weekend I was invited over at SQLSaturday Oslo to speak about SQL Server Indexing. I ran into Boris Hristov...
2015-08-31
890 reads
August and September are going to be some busy weeks!
In those two months I will be speaking on three SQLSaturday...
2015-07-03
534 reads
So now that SQL Server 2016 CTP2 is released to the public we can all finally play with all the...
2015-05-28
3,108 reads
I am very proud to officially announce my first ever SQL Server related book, Pro SQL Server Wait Statistics! As...
2015-04-14
636 reads
On April 18 2015 I will be speaking at SQLSaturday #376 in Budapest!
I will be speaking about one of my...
2015-03-23
539 reads
A couple of days ago I had the great pleasure to join Boris Hristov in one of his awesome SQL...
2015-01-17
593 reads
In part 1 of the In-memory OLTP articles we gave you an introduction into In-memory OLTP, showing what the requirements...
2015-01-11
4,169 reads
When a new year comes around it is always a great time to reflect on the previous year.
2014 was a...
2015-01-06
416 reads
While thinking of ways to improve the way I can get SQL Server information across to those who follow my...
2014-11-30
951 reads
SQL Server 2014 introduced probably one of the biggest changes to the SQL Server engine since years, “In-memory OLTP” (or...
2014-11-27 (first published: 2014-11-21)
8,389 reads
I thought I didn’t care about linting, and lately, I haven’t written a lot...
Want to blend your love of marketing with the power of data? Becoming a...
I live for questions and this was an interesting one. Can you see Table...
Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...
Hi everyone, I’ve been tasked with migrating a Standalone SQL Server instance to a...
Programmatic advertising offers numerous advantages for insurance businesses advertising looking to enhance their marketing efforts efficiently....
What is returned when I run this code in SQL Server 2022?
CREATE TABLE CatIndex ( indexval VARCHAR(20) ) GO INSERT dbo.CatIndex (indexval) VALUES ('1'), ('2'), ('3') GO SELECT CHOOSE(indexval, cast('2025-01-01' AS DATE), CAST('2025-02-01' AS DATE), CAST('2025-03-01' AS DATE)) FROM dbo.CatIndex AS ciSee possible answers