Showing tag results for azuresql

May 15, 2023
Post comments count0
Post likes count3

Implement Change Data Streams with Azure SQL Database, Change Tracking, and Azure SQL Bindings

Brian Spendolini

Building on my first Azure SQL Bindings blog post and taking inspiration from Drew Skwiers-Koballa's post on SQL Bindings, we are going to create a change data stream with Azure SQL Database. Now, usually, the first part of these blogs is a prerequisite section that goes over what you need to install locally to get started. From talking to many of ...

Azure SQLDevOps.NET
May 1, 2023
Post comments count0
Post likes count3

Change Tracking in Azure SQL Database

Brian Spendolini

The Azure SQL Database has two main ways to track changes with data (rows/DML) as well as table changes. One of those methods is Change Tracking with the other being Change Data Capture. Today’s post will be going into depth on Change Tracking. Change Tracking and Change Data Capture So, what’s the difference between the two? Change Data Capture ...

Change TrackingAzure SQL
Apr 24, 2023
Post comments count3
Post likes count3

Using Ledger in Azure SQL Database

Brian Spendolini

Transactions have to be protected and you need to know when something is altered or prevent altering of records from the start. Ledger, available in Azure SQL Database and SQL Server 2022, helps to protect your database and establish trust, accuracy and integrity in your data. Ledger accomplishes this goal in a couple of ways. First, it provides...

Azure SQLAzure Data StudioLedger
Nov 7, 2022
Post comments count0
Post likes count1

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

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 SQLDevOpsVisual Studio Code
Apr 27, 2022
Post comments count9
Post likes count0

Announcing General Availability of Change Data Capture (CDC) on Azure SQL Database

Abhiman Tiwari

We are excited to announce the general availability (GA) of change data capture (CDC) in Azure SQL Database. What is Change data capture (CDC)? CDC provides historical change information for a user table by capturing both the fact that Data Manipulation Language (DML) changes (insert / update / delete) were made and the changed data. Changes are ...

Azure SQL
Mar 15, 2022
Post comments count0
Post likes count0

Build GraphQL apps with Hasura and Azure SQL Database

Silvano Coriani

Hasura makes data access easy, by instantly composing a GraphQL API that is backed by databases and services so that the developer team (or API consumers) get productive immediately. The nature of GraphQL itself and Hasura’s dynamic approach makes integration and iteration easy.

Azure SQL
Mar 2, 2022
Post comments count0
Post likes count1

Create REST API in Python with Django, using the Django REST Framework and Azure SQL

Abhiman Tiwari

Django is a Python-based open-source web framework. It is a popular and well-liked web framework among developers all around the world. But wouldn't it be amazing to build a website with Django while also taking advantage of Azure SQL database's security, performance, high availability, and other great capabilities? In this article, we will crea...

Azure SQLPython
May 25, 2021
Post comments count2
Post likes count0

LAUNCH: Build serverless, full stack applications in Azure

Anna Hoffman

Whether you’re new or seasoned to cloud, development, and SQL, building and architecting applications in the cloud has become a required skill for many roles. Today, we’re excited to announce a new learning path to help developers of all skill levels learn how to create applications quickly and effectively with Azure.

Azure SQLDevOps.NET
Mar 16, 2021
Post comments count11
Post likes count2

Introducing Configurable Retry Logic in Microsoft.Data.SqlClient v3.0.0-Preview1

Silvano Coriani

Over the last few years, we provided guidance on how customers could create their own retry logic or reuse existing libraries aimed to simplify this task for them, We decided to provide a better experience incorporating configurable retry logic capabilities in our client drivers portfolio starting with Microsoft.Data.SqlClient v3.0.0-Preview1.

Azure SQL.NET