PASS Summit Live Keynote – Release 5
Julie Koesmarno, Senior Project Manager at Microsoft, takes the stage to talk about business analytics utilizing War and Peace.
Tracing emotions...
2016-10-26
582 reads
Julie Koesmarno, Senior Project Manager at Microsoft, takes the stage to talk about business analytics utilizing War and Peace.
Tracing emotions...
2016-10-26
582 reads
Document DB: Blazing fast planet-scale NoSQL:
Guaranteed Low LatencyElastically Scaling StorageElastically Scaling ThroughputNo Impedance MismatchChoice of ConsistencyEnterprise Level SLAAzure + DocumentDB with...
2016-10-26
449 reads
Justin Silver, Scientist Pros, takes the stage……
Taking data science out of the lab settings and placing it into real world...
2016-10-26
471 reads
Rohan Kumar, General Manager of Microsoft, takes the stage hyping up SQL Server 2016. We keep hearing the word “Sharing”...
2016-10-26
478 reads
Joseph Sirosh taking the stage by first telling us a story with over 400 million children in India. Only 50%...
2016-10-26
553 reads
Good morning from PASS Summit 2016!
Today will be the first keynote session at 8:15 a.m. with Joseph Sirosh. I’ve found...
2016-10-26
443 reads
It’s about time I got back into participating in the T-SQL Tuesday block parties that are hosted by community members...
2016-10-11
373 reads
As I scrolled through the twitter feeds I ran across one from Tom LaRock (b|t) on PASS Summit being three...
2016-10-11
407 reads
Piggy backing onto the recent SQL Saturday post here in Louisville, I wanted to take a more in-depth look, from...
2016-09-27
324 reads
Being in a shop that utilizes Plan Explorer it was awesome to hear of the news release from SQL Sentry...
2016-09-08
421 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