How to deploy SSIS Package ? Step by Step SSIS TIP #114
Dear Friends,
In last post we have successfully created our fist basic package. So, Now the next thing is how...
2015-09-05
24,020 reads
Dear Friends,
In last post we have successfully created our fist basic package. So, Now the next thing is how...
2015-09-05
24,020 reads
Dear friends,
In last post #112 we understood WWH (What ,Why & How ) of SSIS. Now , lets move now real quick in...
2015-08-29
1,615 reads
Hello Friends,
Welcome, back to Zero to Hero in SSIS series(Post #110). In last post #111 ,We gone through the WW...
2015-08-24
743 reads
Dear Friends,
As shared in last post Post #110, We are starting SSIS tutorialseries ( A Step by Step SSIS learning tutorial)...
2015-08-22
816 reads
Recently, Many friends of mine are interested in learning SSIS so , I thought to write some blogs which might help...
2015-08-17
920 reads
This is one of the challenge for most of the developer to write dynamic SQL. Generally we follow the approach...
2015-08-12
1,276 reads
As we discussed earlier in TIP#103 for NULL in which I shared that we have to take extra care for...
2015-08-09
548 reads
I hope all of you aware of User define table type (a table value parameter) which we discussed earlier in...
2015-08-08
1,342 reads
I recently gone through something and found a unique way of aliasing. I thought it must be share so other...
2015-08-04
581 reads
Whenever we develop application of maintain application we define sets of rules or policies like naming convention , data type, database...
2015-07-26
434 reads
By HeyMo0sh
Over time, I’ve realised that one of the hardest parts of cloud management isn’t...
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
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