Showing results for 2022 - Azure SQL Devs’ Corner

Dec 13, 2022
0
2

Developing with Azure SQL bindings and Azure SQL trigger for Azure Functions

Drew Skwiers-Koballa
Drew Skwiers-Koballa

The Azure Functions SQL trigger will invoke an Azure Function when data is changed in a SQL database table, enabling new event-driven scenarios with SQL database. Accessing data in a SQL database with Azure Functions can be accomplished more quickly with the Azure SQL bindings for Azure Functions integration.  Azure SQL bindings for Azure Functions...

Azure SQL.NETJavascript
Dec 5, 2022
0
0

Connecting the Dots of Azure SQL CICD Part 3: Testing with tSQLt

Brian Spendolini
Brian Spendolini

In part 3 of our Azure SQL database change management (CICD) series we cover testing your code using tSQLt and GitHub Actions. Prerequisites Check Refer to part 1 and part 2 for the prerequisites. Fork the GitHub Project We will be using tSQLt in this post, so I have created a GitHub project made up of several SQL Da...

Azure SQLDevOpsContainers
Nov 16, 2022
28
7

Azure SQL Database External REST Endpoints Integration Public Preview

Davide Mauri
Davide Mauri

The ability to call a REST endpoint natively from Azure SQL Database, which was made available via an Early Adopter Preview in May, is now moving to Public Preview. I'm extremely happy that as of today the new system stored procedure is available to everyone, automatically and transparently: you can use it right away, from any Azure SQL Databa...

Azure SQL
Nov 14, 2022
0
1

Maximizing Azure SQL Database performance with a globally distributed Redis write-behind cache

Shreya Verma Abhiman Tiwari
Shreya,
Abhiman

Azure SQL Database is a fully managed platform as a service (PaaS) relational database service. With Azure SQL Database, you can create a highly available and high-performance data storage layer for the applications and solutions in Azure. SQL Database can be the right choice for a variety of modern cloud applications because it enables you to proc...

Azure SQL.NETRedis
Nov 7, 2022
0
1

Connecting the Dots of Azure SQL CICD Part 2: Local Development

Brian Spendolini
Brian Spendolini

Join us for part two of our Azure SQL database change management (CICD) series. This post covers local development environments with Visual Studio Code. Prerequisites Check For Database Projects to deploy correctly, we need to have the .NET Core SDK installed. You can get it here with a direct link for windows x64 here. You can also check i...

Azure SQLDevOpsContainers
Oct 24, 2022
0
1

Connecting the Dots of Azure SQL CICD Part 1: Getting Started

Brian Spendolini
Brian Spendolini

Azure SQL CICD Part 1: Getting Started Continuous Integration (CI) and Continuous Delivery/Deployment (CD) are a set of principles or methodologies that empower development teams to deliver code faster, more reliably, and with fewer bugs compared to traditional software development such as the waterfall model. Teams that use CI/C...

Azure SQLDevOpsContainers
Jun 3, 2022
3
0

Announcing JSON Enhancements in Azure SQL Database, Azure SQL Managed Instance and SQL Server 2022

Umachandar Jayachandran (UC)
Umachandar Jayachandran (UC)

Azure SQL Database, Azure SQL Managed Instance and SQL Server currently support JSON text processing in T-SQL batches. This functionality allows you to store and manipulate JSON documents in the database. The JSON functions - ISJSON, JSON_VALUE, JSON_QUERY, JSON_MODIFY allows you to validate, query and modify JSON documents. The FOR JSON operator a...

Azure SQL
May 24, 2022
4
1

Announcing the “Azure SQL Database External REST Endpoints Integration” Early Adoption Program

Davide Mauri
Davide Mauri

A new, exciting capability for Azure SQL Database has been announced today at //Build: Azure SQL Database has a new built-in feature that allows native integration with external REST endpoints. This means that integration of Azure SQL Database with Azure Functions, Azure Logic Apps, Cognitive Services, Event Hubs, Event Grid, Azure Containers, ...

Azure SQL
May 19, 2022
0
1

Azure SQL Database Change Stream with Debezium

Davide Mauri
Davide Mauri

Azure SQL Database and in general the SQL Server engine allows developers to easily get only the changed data from the last time they queried the database. More precisely, there are two features that allow us to do this and much more, providing capabilities to query for changes happened from and to any point in time. The two features are named ...

Azure SQL
May 9, 2022
0
1

Create and connect to an Azure SQL DB in 6 easy steps

Davide Mauri
Davide Mauri

There are many ways in which an Azure SQL database can be created, and if you are new to the development all those different options can be quite intimidating. Let me show you, in just a few steps, how easy it is instead. This is what we are going to do: I'll be using the Azure Shell portal, as it provides a full ex...

Azure SQL