Deploying to Power BI Premium
Obviously the big news of the day is the announcement for general availability of Power BI Premium! And if you...
2017-06-12
204 reads
Obviously the big news of the day is the announcement for general availability of Power BI Premium! And if you...
2017-06-12
204 reads
A question that I answer what seems like all the time is how to run cross-database queries against Azure SQL...
2017-06-12 (first published: 2017-05-30)
3,488 reads
Last week on May 17th the Power BI team announced the release of the Power BI Report Server preview. Power...
2017-06-05 (first published: 2017-05-23)
3,101 reads
A question that I answer what seems like all the time is how to run cross-database queries against Azure SQL...
2017-05-30
509 reads
Last week on May 17th the Power BI team announced the release of the Power BI Report Server preview. Power...
2017-05-23
233 reads
Yesterday I had the pleasure of delivering a webinar presentation in partnership with Pragmatic Works called “What is Power BI Premium?”.
New...
2017-05-23
940 reads
Yesterday I had the pleasure of delivering a webinar presentation in partnership with Pragmatic Works called “What is Power BI Premium?”.
New...
2017-05-23
170 reads
Over the past couple weeks there has been a ton of news and announcements around the direction Microsoft is taking Power...
2017-05-19
1,837 reads
Over the past couple weeks there has been a ton of news and announcements around the direction Microsoft is taking Power...
2017-05-19
200 reads
Today I had the wonderful pleasure for leading a discussion regarding the products, services, and tools Microsoft provides in the...
2017-04-10
329 reads
By Steve Jones
Redgate is a for-profit company. We look to make money by building and selling...
I’ve uploaded the slides for my Techorama session Microsoft Fabric for Dummies and my...
If you've ever loaded a 2 GB CSV into pandas just to run a...
Comments posted to this topic are about the item Even When You Know What...
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...
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