Azure DWH part 11: Data Warehouse Migration Utility
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,712 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,712 reads
In this article, we will show how to create a WPF application and show how to insert data to ASDW.
2017-07-10
832 reads
In this article, we will compare two folders using PowerShell, the command prompt and other tools.
2017-05-30
2,330 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,328 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,741 reads
In this article, we will show how to create reports in ASDW using SSRS
2017-03-27
1,560 reads
This time we explain how to recover an Azure SQL Data Warehouse (ASDW) from a disaster.
2017-03-20
3,646 reads
This time we will work with the sqlcmd to handle our Azure SQL Data Warehouse
2017-03-09
1,189 reads
In this article, we will use SSIS to import a CSV file to Azure SQL Data Warehouse.
2017-02-13
1,457 reads
If you've ever loaded a 2 GB CSV into pandas just to run a...
By James Serra
What problem is Fabric Ontology trying to solve? For years, most data conversations have...
By Steve Jones
Recently I ran across some code that used a lot of QUOTENAME() calls. A...
Comments posted to this topic are about the item The New Software Team
Comments posted to this topic are about the item Database Mail in SQL Server...
Comments posted to this topic are about the item The string_agg function
We create the following table and then insert some records in it:
create table t1 ( id int primary key, category char(1) not null, product varchar(50) ); insert into t1 values (1, 'A', 'Product 1'), (2, 'A', 'Product 2'), (3, 'A', 'Product 3'), (4, 'B', 'Product 4'), (5, 'B', 'Product 5');What happens if we execute the following query in both Sql Server and PostgreSQL?
select id,
category,
string_agg(product, ';')
over (partition by category order by id
rows between unbounded preceding and unbounded following) as stragg
from t1; See possible answers