Running SSIS 32-bit drivers or tasks on a 64 bit machine
Running SSIS on a 64-bit machine has several caveat that developers need to be aware of. Tasks like the ActiveX...
2009-12-11
517 reads
Running SSIS on a 64-bit machine has several caveat that developers need to be aware of. Tasks like the ActiveX...
2009-12-11
517 reads
This is an answer to a forum question on www.bidn.com
Running SSIS on a 64-bit machine has several caveat that developers...
2009-12-11
4,749 reads
Often when designing a report you may find a need to concatenate values in an expression. For example, you want...
2009-12-11
1,388 reads
This is part four in the series of blog posts that will help in building a library of calculations you...
2009-12-07
2,810 reads
This is part three in a series of blog posts that will help you build an arsenal of MDX calculations...
2009-12-03
1,771 reads
This post is a part of a series of blog posts I am writing to give you a Batman-like Utility...
2009-12-01
1,771 reads
Developing MDX calculations is one of the most confusing and time consuming pieces of building an Analysis Services cube. That...
2009-12-01
2,696 reads
A common question I've been asked a lot lately is how to replace the icon in the Report Manager to...
2009-11-22
14,734 reads
When developing Reporting Services reports that use Analysis Services as a data source you may find that it is difficult...
2009-11-12
725 reads
Data Warehouse latency is often a complaint I have heard from end users when trying to access data via either...
2009-11-11
6,599 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