Skip to content

Tag: azure

Azure SQL Database Manipulation

Is it possible to create a table in an Azure sql database using Python? I am pulling a list of things from an API and then want to push them to a table in my Azure sql db but can not find a tutorial or guide on how to do so. Googling for it led me to tutorials on how

Convert simple JSON to SQL SELECT Statement

I have the following JSON: I’m trying to convert to SQL as follows: All i get is an empty resultset (0 rows when it should be 2 rows), what am i doing wrong? Answer Your JSON has square brackets round the whole thing, meaning it is an array (it only has one element) so your OPENJSON starting point will …

Is it possible to create Azure SQL Database master master replication

I am sorry because I’m new to use Azure service. I want two SQL databases (one in Southeast Asia and one in Central US) for high availability or replication master-master. Now I just found two ways to sync both databases. Azure Geo-Replication but the problem is this method use master-slave replication.…

Rename Column in Azure Data Warehouse

I know I can accomplish my objective with this process: Create new column Update new from old Drop old I am looking for a way to do this with one command. I know that remane object works at the table level. For example, I can do this: But these all fail with various error messages: Plus, according to this, sp…