Microsoft Azure – How to Check the availability of cloud services using PowerShell
Hello friends, in this blog we will learn how to check whether a cloud service is available to use with...
2017-08-21
474 reads
Hello friends, in this blog we will learn how to check whether a cloud service is available to use with...
2017-08-21
474 reads
In my previous blog, we learnt that a Virtual IP (VIP) get lost or changed when we stop or deallocate...
2017-08-11
684 reads
Virtual IP (VIP) is a public IP address and created when a cloud service is created. A VIP is a...
2017-08-07
578 reads
Hello friends, windows Azure Powershell has a big library for Azure cmdlets which is very helpful in doing things without...
2017-08-04
634 reads
In my previous blog we learnt to connect to Azure subscription by importing azure license setting file. In this blog...
2017-08-03
528 reads
Hello friends, in this blog we will learn how we can connect to Azure Subscription using PowerShell. As you know...
2017-08-01
490 reads
In this blog I will tell you how we can attach a data disk to an Azure Virtual Machine using...
2017-01-05
557 reads
Hi friends, recently I was finding a way on taking backup of local database and restore that database to Azure...
2016-11-28
973 reads
Hi friends, We need to collect inventory for database migration as well as platform to set up environment for migration,...
2016-09-30
1,093 reads
In my previous blog we discussed about the different format of SQL Server execution plan. Now in upcoming blogs we...
2016-09-28
517 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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