Showing results for DevOps - Azure SQL Devs’ Corner

Aug 28, 2023
0
3

REST Endpoint Invocation is now Generally Available

Brian Spendolini
Brian Spendolini

On behalf of the Engineering and Product Management teams, we are happy to announce that External REST Endpoint Invocation is now GA!   What is External REST Endpoint Invocation? External REST Endpoint Invocation makes it possible for developers to call REST/GraphQL endpoints from other Azure Services from right in the Azure SQL Database....

Azure SQLDevOpsREST
May 15, 2023
0
3

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

Brian Spendolini
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
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 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
May 25, 2021
2
0

LAUNCH: Build serverless, full stack applications in Azure

Anna Hoffman
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.

PythonAzure SQLDevOps
Dec 11, 2020
1
4

Programmatically parsing Transact SQL (T-SQL) with the ScriptDom parser

Arvind Shyamsundar
Arvind Shyamsundar

Azure SQL developers have access to a full-fidelity, highly accurate, and easy-to-use client-side parser for T-SQL statements: the TransactSql.ScriptDom parser. This blog post walks through basic usage, and links to a number of resources for digging deeper.

Azure SQLDevOps.NET