SQL Server Standard
PASS is relaunching the SQL Server Standard with a wholly new approach and format. I’ll put more out about it...
2009-08-03
714 reads
PASS is relaunching the SQL Server Standard with a wholly new approach and format. I’ll put more out about it...
2009-08-03
714 reads
I like to blog about technical topics and community, not personal stuff. However, this is a community post. A number...
2009-08-01
622 reads
I thought I had an interesting answer to the question. Unfortunately Adam Machanic, who has been working in this specific...
2009-07-31
1,322 reads
PASS is trying to find better ways to reach out to SQL Bloggers. They’re going to experiment with taking advantage...
2009-07-31
1,319 reads
UPDATE: This post is incorrect. Adam nailed it in the comments. I explain my mistake here.
A question came up over...
2009-07-28
1,875 reads
Steve Jones, through a series of comments, emails, blackmail, back-alley deals & tons of whining, agreed to let me review a...
2009-07-24
570 reads
Need a new laptop bag? MVP Grant Fritchey brings us a review of a large and versatile brief case that's a little different than the rest.
2009-07-24
1,431 reads
Do you know how to start a conversation or how to join one? I usually wait for a pause and...
2009-07-21
666 reads
Do you want to get a glimpse into how the Microsoft Field Engineers would go about troubleshooting performance issues on...
2009-07-20
784 reads
With the GDR release, a whole new set of deployment functionality has become available to VSTS: DB.
2009-06-24
5,536 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