Query Store Questions From The Field
I have had several Query Store questions come in from customers lately. Some of the questions stemmed from things read...
2017-05-16
381 reads
I have had several Query Store questions come in from customers lately. Some of the questions stemmed from things read...
2017-05-16
381 reads
I have had several Query Store questions come in from customers lately. Some of the questions stemmed from things read...
2017-05-16
93 reads
In this video I talk about Trace Flag 1117 and how it was designed to help keep data file growth...
2017-05-16 (first published: 2017-05-05)
1,336 reads
In this video I talk about Trace Flag 1117 and how it was designed to help keep data file growth...
2017-05-05
101 reads
Discovery I ran across an issue where I had just configured database mail on a new server, went to send...
2016-07-13 (first published: 2016-07-05)
1,886 reads
Discovery I ran across an issue where I had just configured database mail on a new server, went to send...
2016-07-05
85 reads
Let me start off with a disclaimer that these thoughts on the January PASS board meeting are my own as...
2016-04-18
500 reads
Let me start off with a disclaimer that these thoughts on the January PASS board meeting are my own as...
2016-04-18
83 reads
Have you ever had the need to query Active Directory right out of SQL Server using native TSQL? There are...
2016-03-21 (first published: 2016-03-15)
3,794 reads
Have you ever had the need to query Active Directory right out of SQL Server using native TSQL? There are...
2016-03-15
147 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