Approaches to deploying Sql Server database code
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated "compare...
2015-04-27
586 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated "compare...
2015-04-27
586 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
69 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a bucket load of data flow components all at...
2015-04-27
6 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-04-27
45 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-04-27
48 reads
I had the honour of talking at the excellent Sql Saturday Exeter this morning and wanted to share my slides and say thanks to the organisers, sponsors and everyone...
2015-04-25
3 reads
I had the honour of talking at the excellent Sql Saturday Exeter this morning and wanted to share my slides...
2015-04-25
41 reads
I had the honour of talking at the excellent Sql Saturday Exeter this morning and wanted to share my slides...
2015-04-25
451 reads
I had the honour of talking at the excellent Sql Saturday Exeter this morning and wanted to share my slides...
2015-04-25
35 reads
It is sometimes useful to be able to use sqlpackage.exe to create a script that can be deployed manually or still automatically but at a later date plus you...
2015-04-21
8 reads
By Steve Jones
Redgate is a for-profit company. We look to make money by building and selling...
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...
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