Using Azure Synapse Link for Azure Cosmos DB
Learn how you can query CosmosDB data from Azure Synapse in this walkthrough.
2020-12-17
6,441 reads
Learn how you can query CosmosDB data from Azure Synapse in this walkthrough.
2020-12-17
6,441 reads
Learn how you can use Polybase technology in Azure Synapse to load data into your warehouse.
2020-07-28
27,777 reads
2020-07-21
475 reads
Learn how to create a Synapse resource and upload data using the COPY command.
2020-07-13
16,137 reads
Introduction Developing predefined reports in addition to all the ad-hoc queries have been a part of my daily activities. Often I find my stakeholders asking me to prepare reports in which they want to know something that has never happened. It might sound strange, but yeah, that's what their point of concern is all about. […]
2021-11-26 (first published: 2019-11-04)
14,981 reads
Data classifications in Azure SQL DW entered public preview in March 2019. They allow you to label columns in your data warehouse with their information type and sensitivity level.
2019-05-31
Before writing about pausing (and resuming) Azure SQL Data Warehouse (DW) it makes sense to discuss the architecture of this product. At a high level it involves a control...
The...
2019-05-07
James Serra talks about where you should you clean your data when building a modern data warehouse in Azure.
2019-05-03
This time, we will talk about the competition or alternatives to Azure SQL Data Warehouse.
2018-06-26
518 reads
The DMV are very effective and important to administer ASDWH. In this article we will show some important DMVs.
2017-12-26
887 reads
By Kevin3NF
Does skipping a DBA save money? Wait until your system grinds to a halt,...
By Brian Kelley
I admit that until I read the article, Who are you as a Leader?,...
Suppose you want to call a certain Microsoft Fabric REST API endpoint from Azure...
I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...
Good morning to all. I am a novice when it comes to SQL so...
Hi all, In my company we have many databases encrypted with TDE and there...
What is returned from this code in SQL Server 2022?
DECLARE @value INT = NULL , @value2 VARCHAR(20) = NULL; SELECT COALESCE (@value, @value2, 100.5) AS Result; GOSee possible answers