Writing More This Month
I haven’t written much in a while, having had to put more time into both personal and professional obligations over...
2016-11-07
366 reads
I haven’t written much in a while, having had to put more time into both personal and professional obligations over...
2016-11-07
366 reads
This year we’re trying out two ideas on Thursday night, a networking dinner (of a sort) and game night. I...
2016-10-27 (first published: 2016-10-20)
654 reads
If you’re at the PASS Summit and would like to meet some new people, come see us from 5:30 to...
2016-10-27
749 reads
Read this and wanted to share as we head to the PASS Summit next week: This is how we do it:...
2016-10-21
428 reads
Events like the PASS Summit aren’t just about education. They are a chance to meet new people, get some distance from...
2016-10-20
442 reads
Part of making a week long trip to a big event like the PASS Summit successful is finding something to...
2016-10-20
435 reads
Typically I want to get 3 years out of a laptop to amortize spending on a premium grade machine. I’m...
2016-10-12
431 reads
Many of have applications that log errors to a table. Ever thought about what happens when an application starts to throw a lot of errors? This article looks at the problem and some of the responses you might consider having ready in case it happens to you!
2016-10-11
1,807 reads
A Visit to Microsoft was posted back in August and I just re-read it. Here’s a quote that might interest you:
As...
2016-10-10
388 reads
I think the topic of whether log data belongs in a table or a file would be a great one for...
2016-10-10
391 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