AI Thoughts on the Build Keynote
Today Steve has a few thoughts, and links, from the Build Keynote last week, which featured AI technology.
2023-05-26
158 reads
Today Steve has a few thoughts, and links, from the Build Keynote last week, which featured AI technology.
2023-05-26
158 reads
Kathi Kellenberger addresses the retirement of the Microsoft Professional Program in the latest SImple Talk Editorial. Stop by and let her know your thoughts.
2019-09-12
The Corsica ASIC offloads compression and encryption to accelerate storage performance.
2019-05-13
Today at Microsoft’s Build developer conference, the Redmond company announced some major changes to the Windows Subsystem for Linux, as well as some improvements to Windows 10 command line...
2019-05-07
At Microsoft's Build conference this week, the company is making a significant number of announcements related to the company's PowerApps platform.
The post Microsoft’s Bringing New Feature to its PowerApps...
2019-05-06
Microsoft is going to solve its three-browser problem with a new feature in Edge and is also going to help retain more control of your browsing data too.
The post...
2019-05-06
Microsoft is bringing Windows Hello to new places that will help make it easier to log in more securely to your Microsoft account.
The post Microsoft’s Windows Hello Takes Another...
2019-05-06
New updates are coming to the Microsoft Edge browser as work continues to incorporate the Chromium rendering engine in a refresh of the company’s latest web browser.
2019-05-06
Microsoft is increasing the minimum storage requirement for Windows 10 feature updates but if this impacts your environment, you have more than a year to find a solution.
The...
2019-04-26
The results reflect Chief Executive Officer Satya Nadella’s efforts to draw some customers away from cloud market leader Amazon.com Inc. and ink more significant clients. Microsoft also is benefiting...
2019-04-25
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