Accenture and DataStax Establish Big Data Alliance #bigdata
Accenture and DataStax have signed an alliance agreement, formalizing their longstanding collaboration in helping clients manage and drive insights from...
2014-02-24
575 reads
Accenture and DataStax have signed an alliance agreement, formalizing their longstanding collaboration in helping clients manage and drive insights from...
2014-02-24
575 reads
We’ve probably all heard the famous quote by John Wanamaker, the father of modern advertising: “Half the money I spend...
2014-02-24
1,025 reads
Two recent salary surveys have shown that R language skills attract median salaries in excess of $110,000 in the United...
2014-02-24
1,274 reads
The “Perfectly Optimized” Page infographic states that there is no such thing as a “Perfect Page”. But don’t be discouraged!...
2014-02-24
917 reads
A Strategic alliance between the biggest Linux vendor and the leader in fully opensource hadoop is a killer combo. Read...
2014-02-23
440 reads
This week the AzureCAT team is excited to make our first team appearance at the Strata conference. For those of you...
2014-02-23
451 reads
Streaming video giant Netflix is experimenting with the advanced artificial intelligence method commonly known as deep learning, it explained on...
2014-02-23
877 reads
There are two major reasons baseball has been such a boon to statisticians trying to measure human performance. First, sample...
2014-02-23
598 reads
Excel- and cloud-based BI suite finally comes out of preview. Woot! – check out all the details here
from ZDNet | Big On...
2014-02-22
498 reads
Here is a cool looking 1964 FJ40 Toyota Land Cruiser in good original condition…a road warrior that has a great...
2014-02-22
718 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