Performance Tuning OLAP Reports
Reports that use an Analysis Services cube as a data source can often have performance problems during pre-execution. Before you...
2009-11-09
3,065 reads
Reports that use an Analysis Services cube as a data source can often have performance problems during pre-execution. Before you...
2009-11-09
3,065 reads
I decided to do a little performance testing on some common SSIS “Tricks” that increase speed and effectiveness of SSIS...
2009-11-07
2,763 reads
I had another chance last week to answer an email follow up question from the session Brian and I gave...
2009-11-07
852 reads
I have decided to make a short series of blogs about possible interview questions to help you prepare for an...
2009-11-07
1,945 reads
This is just a starting point for you to prepare for your interview so make sure not to limit yourself...
2009-11-07
2,316 reads
Last week I wrote a set of Advanced SSIS Interview Questions. Here are the answers I came up for these. ...
2009-11-07
2,005 reads
This is part 1 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-11-07
736 reads
This is part 2 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-11-07
1,507 reads
Using a Deployment Manifest in SSIS allows you to deploy a set of packages to a target location using a...
2009-11-07
950 reads
This is part 3 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-11-07
1,139 reads
I’ve been thinking a lot lately about what it actually takes to make an...
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...
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