Distributed cache service stuck in started & Provisioning on CA page
Hello Readers,
As per Previous article, i tried to explain configuration of Distributed Cache in SharePoint 2013 environment. Same follows for...
2018-08-21
970 reads
Hello Readers,
As per Previous article, i tried to explain configuration of Distributed Cache in SharePoint 2013 environment. Same follows for...
2018-08-21
970 reads
Friends/My Readers,
Its been a long i have been away from my blogging.When i see back Its exactly 3 yrs Today(30/July/2015...
2018-07-30
316 reads
Hi All,
As per the previous article, i have tried to create the understanding for Distributed Cache service :Understanding, Planning and...
2015-07-30
1,421 reads
Hi All,
Major expectation raised by user for SharePoint other then Search ,is to have Good User Experience and Faster in...
2015-06-29
1,608 reads
Hi All,
I am sharing the response and question which I received on my mail based on past post : “Configure search...
2015-01-29
1,374 reads
Hello Friends,
With a New Year and my earlier commitments. Below is the way to configure Search Service 2013 in Scale...
2015-01-12
878 reads
The WordPress.com stats helper monkeys prepared a 2014 annual report for this blog.
Here’s an excerpt:
The concert hall at the Sydney...
2014-12-30
1,115 reads
Hello Friends,
I was getting lot of responses on blogs and mails. It will be difficult to cover all at once...
2014-10-30
1,976 reads
Wishing You a Very Happy Diwali…………….
KAHI TIMTIMAHAT HAIN DIYO KI, KAHI SHOR HAAN ATHISBAZI KA
CHAMAK HAAN DIL MAIN, UMEEDO KI...
2014-10-22
742 reads
Hello Friends,
Life Is a struggle with Lot of If and buts. It’s being a many month I was out of...
2014-10-01
1,187 reads
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
By HeyMo0sh
Working in DevOps long enough teaches you two universal truths: That’s exactly why I...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
Comments posted to this topic are about the item Answering Questions On Dropped Columns
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 t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers