2022-02-28
11,323 reads
2022-02-28
11,323 reads
Learn about the Schema Compare feature in Azure Data Studio.
2022-02-21
10,400 reads
2022-02-14
4,591 reads
Learn how to create a PostgreSQL database and work with it from Azure Data Studio.
2022-02-07
3,106 reads
Learn how to install PostgreSQL and using Azure Data Studio to work with it.
2022-01-31
7,467 reads
Introduction This article will introduce you to the SQL Server Dacpac in Azure Data Studio. We will also learn about the Bacpac. In the Azure Data Studio, we have an extension named SQL Server Dacpac which allows us to deploy, extract Dacpacs, create a database from a Bacpac and export a schema and data to […]
2022-01-17
13,496 reads
Introduction Do we have the SQL Profiler in Azure Data Studio? In a previous article, we compared SSMS and Azure Data Studio. Now we will compare the new SQL Profiler against the old one. If you check the SQL Server Profiler documentation, you will find that SQL Profiler is deprecated and that that feature will […]
2021-12-20
5,148 reads
Learn how to work with SQL Agent Jobs in Azure Data Studio.
2021-12-13
10,173 reads
Learn how you can get better charting in Azure Data Studio with SandDance.
2021-12-06
2,609 reads
Learn about the history and different versions of Integration Services (SSIS) in SQL Server.
2021-11-12
9,794 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers