2025-02-14 (first published: 2025-02-12)
989 reads
2025-02-14 (first published: 2025-02-12)
989 reads
Learn how to create and modify a database project in Azure Data Studio.
2025-02-10
1,951 reads
Azure Data Studio (ADS) is a lightweight IDE built...
2024-09-27
986 reads
2024-07-19
1,759 reads
This article continues my series on ADS and examines the SQL Agent extension.
2024-05-17
2,208 reads
Azure Data Studio (ADS) is a lightweight IDE built on Visual Studio Code. I've written a few articles on how the tool works, and this one continues the series. In this article, I want to look at the database dashboards and how you can customize them. The other articles in this series on ADS works […]
2024-05-03
3,361 reads
Azure Data Studio (ADS) is a lightweight IDE built on Visual Studio Code. I've written a few articles on how the tool works, and this one continues the series. In this article, I want to look at the server and database dashboards and how you can customize them. Another article will cover the Database dashboards. […]
2024-03-28 (first published: 2024-01-29)
4,096 reads
This article covers the basics of the Profiler extension in Azure Data Studio, a handy way to trace your application calls.
2024-03-25 (first published: 2023-12-29)
4,079 reads
Learn how this extension in Azure Data Studio makes it easy to import flat files in a CSV or JSON format.
2023-11-29
7,800 reads
See a first look at Azure Data Studio from Kenneth Igiri and read about his impressions.
2023-11-13
4,202 reads
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
I’m excited to announce the release of a new open-source project that fully automates...
Comments posted to this topic are about the item Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers