Looking at SSDT upgrade scripts
I have been using SSDT seriously for a couple of years now and have really been impressed with the code that is generated to upgrade schemas and over that...
2015-11-01
5 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code that is generated to upgrade schemas and over that...
2015-11-01
5 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
30 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
24 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
532 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if you want to use something from github you literally...
2015-10-16
4 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
47 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
44 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
18 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
900 reads
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which is annoying when you are on something else.
However, if...
2015-10-14
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