xSQLServer is dead long live SqlServerDsc
I have had a problem with DSC in Azure Automation for a few months now, there was a change made to the xSqlServer DSC resource which meant that the...
2017-12-15
10 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made to the xSqlServer DSC resource which meant that the...
2017-12-15
10 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made...
2017-12-15
343 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made...
2017-12-15
58 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made...
2017-12-15
91 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst us have used query analyzer, enterprise manager and probably...
2017-12-14
5 reads
There are a few different choices for tools to use when it comes to SQL Server, while the "experienced" amongst...
2017-12-14
342 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst...
2017-12-14
40 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst...
2017-12-14
38 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting the tooling take care of the how. I guess...
2017-12-13
9 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2017-12-13
35 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