SSAS Cache Warming with an SSIS package
There are several techniques that can be used for performance tuning Analysis Services. You may already be familiar with the...
2010-07-01
2,864 reads
There are several techniques that can be used for performance tuning Analysis Services. You may already be familiar with the...
2010-07-01
2,864 reads
Today I did a webinar on MDX solutions. For those of you interested you can grab the slides here and...
2010-06-24
1,213 reads
Using configurations files in SSIS is a great way to change how your package will run from outside the development...
2010-05-14
869 reads
Reporting Services 2008 R2 has many new great features that I’ve written about lately (Data Bars and Indicators). Today I...
2010-04-24
1,337 reads
With less than a month away, May 8, before the big event in Jacksonville I wanted to give you a little inside...
2010-04-15
575 reads
Last week I wrote a blog explaining how the new tool inside Reporting Services 2008 R2 called Indicator will be...
2010-04-12
2,087 reads
As I begin to explore more and more of the new feature that will be available in SQL Server 2008...
2010-04-09
1,842 reads
Have you been looking for a way to measure report performance? Want to know who accesses your reports most frequently? ...
2010-03-30
1,716 reads
Analysis Services calculations are great for storing formulas that your users need to see on a regular basis. They also...
2010-03-17
6,081 reads
When developing reports that use Analysis Services as a data source end user can sometimes be confused about some of...
2010-03-12
510 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