My Azure ARM template development workflow
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2017-12-13
44 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2017-12-13
44 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most of it open source with a permissive license like...
2017-12-09
4 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
303 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
38 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
41 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
12 reads
I think the title sums it up, I have published a new version of ARMED the arm helper extension for VSCode.
This version includes the ability to see a graph...
2017-12-08
1 reads
I think the title sums it up, I have published a new version of ARMED the arm helper extension for...
2017-12-08
557 reads
I think the title sums it up, I have published a new version of ARMED the arm helper extension for...
2017-12-08
39 reads
I think the title sums it up, I have published a new version of ARMED the arm helper extension for...
2017-12-08
42 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