Azure DWH part 12: Permissions, roles, logins and users
In this article we will show some common roles and queries related to Azure SQL Data Warehouse.
2017-07-25
5,101 reads
In this article we will show some common roles and queries related to Azure SQL Data Warehouse.
2017-07-25
5,101 reads
There is a new utility to import data from SQL Server on premises or Azure SQL to Azure SQL Data Warehouse (ASDW)
2017-07-17
1,714 reads
In this article, we will show how to create a WPF application and show how to insert data to ASDW.
2017-07-10
835 reads
In this article, we will compare two folders using PowerShell, the command prompt and other tools.
2017-05-30
2,332 reads
In this new Azure Data Warehouse article, we will show how to insert data and retrieve it using PHP.
2017-05-22
627 reads
In this new article, we will learn how to access to our Azure DWH tables using C#.
2017-05-15
2,334 reads
In this chapter, we will show how to create a Machine Learning experiment from our Azure SQL Warehouse.
2017-05-05 (first published: 2016-06-14)
5,746 reads
In this article, we will show how to create reports in ASDW using SSRS
2017-03-27
1,563 reads
This time we explain how to recover an Azure SQL Data Warehouse (ASDW) from a disaster.
2017-03-20
3,657 reads
This time we will work with the sqlcmd to handle our Azure SQL Data Warehouse
2017-03-09
1,192 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