Summit 2012 Keynote Day1
This post is a live recap of the keynote at the PASS Summit 2012 conference.
Bill Graziano opens Summit 2012 with...
2012-11-07
628 reads
This post is a live recap of the keynote at the PASS Summit 2012 conference.
Bill Graziano opens Summit 2012 with...
2012-11-07
628 reads
I’m not a politically minded person and this is not the type of post I would normally write. However, I’m...
2012-10-09
765 reads
I ran across the following error in SQL Reporting Services 2008 R2 a few weeks ago:
The report execution has expired or...
2012-06-27
12,382 reads
I’m officially on the slate and running for the PASS 2012 Nomination Committee!
I love the SQL Community and everything it embodies. ...
2012-06-13
663 reads
I was fortunate enough to get to present not 1 but 2 sessions at SQLRally 2012 in Dallas last week. ...
2012-05-15
750 reads
Things have been quiet around here lately and I have a one word explanation….SQLRally. There’s work and family and several...
2012-05-05
587 reads
How to setup and use Central Management Server to manage a disperse environment.
2012-04-30
9,970 reads
2012-04-23
5,959 reads
This week I had an application team report the error “SQL Connection Lost”. Fortunately they also reported the exact times...
2012-03-06
1,665 reads
I just found out that I will be speaking at SQLRally Dallas in May. I submitted 3 sessions. As an...
2012-02-27
664 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