Columnstore Indexes – part 104 (“Batch Mode Adaptive Joins”)
Continuation from the previous 103 parts, the whole series can be found at http://www.nikoport.com/columnstore/.
This blog post is a logical continuation...
2017-04-22
548 reads
Continuation from the previous 103 parts, the whole series can be found at http://www.nikoport.com/columnstore/.
This blog post is a logical continuation...
2017-04-22
548 reads
Thu, Apr 27 2017 20:00 GMT Daylight Time
Power BI Dashboard within an hour for Excel users
RSVP:https://attendee.gotowebinar.com/register/8516045593703848705
Power BI Dashboard within an...
2017-04-22
627 reads
This blog post is about a situation where I use Visual Studio Team Services (VSTS) to build/deploy my DEMOs. Those...
2017-04-22
1,066 reads
Now that SQL Saturday South Island (also known as #sqlsat614 on the Twitter) is done I thought it would be...
2017-04-22
247 reads
Availability Groups are a fantastic way to provide high availability and disaster recovery for your databases, but it isn’t exactly...
2017-04-22
3,417 reads
Availability Groups are a fantastic way to provide high availability and disaster recovery for your databases, but it isn’t exactly the easiest thing in the world to pull off...
2017-04-22
7 reads
I received the email from Learning Tree on Wednesday with their weekly offer of courses running in the London Education...
2017-04-21
613 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-04-21
689 reads
As a DBA, you get alerts many times regarding the database file space issue. To address the issue, you may...
2017-04-21
1,176 reads
We all know indexes are good and I’m hoping everyone knows you can have too many indexes. That means we...
2017-04-21 (first published: 2017-04-19)
2,864 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers