Azure DWH part 25: Auditing and threat detection
In this new article, we will show how to audit the Data Warehouse Activities.
2018-01-30
552 reads
In this new article, we will show how to audit the Data Warehouse Activities.
2018-01-30
552 reads
This article will explain what is an elastic query and show an example.
2018-01-23
3,354 reads
SQL Server on-premises includes a module to create Data Mining models. We will show how to create them using ASDW.
2018-01-09
509 reads
The DMV are very effective and important to administer ASDWH. In this article we will show some important DMVs.
2017-12-26
926 reads
This time we will show how to access to Azure SQL Data Warehouse using Excel.
2017-12-19
604 reads
This tip will show eight ways to export the results of a query to a text file.
2017-10-06 (first published: 2016-10-26)
502,721 reads
In this article we will learn to use Data Factory to import table from SQL Server to Azure SQL Data Warehouse.
2017-10-03
820 reads
In Azure SQL Data Warehouse we can use BCP to export or import the data. In this article, we will show how to do it.
2017-09-26
2,207 reads
In this article, we will learn how to query a csv file stored in the Data Lake using PolyBase.
2017-09-05
2,617 reads
In this article we will load data from a SQL Server on-premises to Azure SQL Data Warehouse
2017-08-01
781 reads
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
By way of background, a while back I did video called “My New Favourite...
By ReviewMyDB
Index maintenance has always meant nightly jobs and a window you have to defend....
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item How We Handled a Vendor...
Comments posted to this topic are about the item Cognitive Coverage
I have this data in the dbo.Commission table in a SQL Server 2022 database.
salesperson commission Brian 12 Brian 16 Andy 7 Andy 14 Andy 21 Steve 20 Steve NULLAll the data is a varchar, and I decide to run this query to get the totals for each salesperson.
SELECT SalesPerson
, AVG(TRY_PARSE(Commission AS int)) AS TotalCommission
FROM commission
GROUP BY SalesPerson
GO
What average commission is calculated for Steve? See possible answers