Showing results for T-SQL - Azure SQL Devs’ Corner

May 1, 2023
0
3

Change Tracking in Azure SQL Database

Brian Spendolini
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
Jan 20, 2023
6
1

CTEs, Views or Temp Tables?

Davide Mauri
Davide Mauri

I've just finished watching the video from the @GuyInACube about Common Table Expressions and I noticed that in several comments there was the request to explain what is the difference between Common Table Expressions, Views and Temp Tables. This is quite a common question, and it is time to give it a simple, concise, and clear answer, once a...

Azure SQL
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
Jan 21, 2021
3
0

Solving the River Crossing problem with SQL Graph

Arvind Shyamsundar
Arvind Shyamsundar

Graph theory and associated techniques are extremely powerful. Azure SQL allows native representation of graphs as node and edge tables, and provides breadth-first-search traversal for native path finding. This blog post demonstrates the ease of use, and great power of, these features by using them to solve the classic river crossing riddle!

Azure SQL
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
Sep 2, 2020
1
0

Practical Azure SQL Database for Modern Developers

Davide Mauri
Davide Mauri

Practical Azure SQL Database for Modern Developers: a book to learn how to take advantage of the all the breakthrough technologies available in Azure SQL like columnstore, in-memory lock-free tables, row-level-security, graph and geospatial support to create modern, scalable and secure applications.

Azure SQLDevOpsPython
Apr 25, 2020
11
0

10 reasons to use Azure SQL in your next project

Davide Mauri
Davide Mauri

There are many database technologies available on Azure that you can choose from. Why would you use Azure SQL? Let me show you why, using just 10 simple points: from JSON support to ColumnStore, through Geospatial and Temporal queries, Non-Blocking transaction, Encryption and Row-Level Security and the amazing Intelligent Query Optimizer.

Azure SQL