TechEd Impressions: Day Three
Today I attended four regular sessions, plus a special lunch session for Microsoft MVPs. The sessions I attended varied a...
2010-06-10
651 reads
Today I attended four regular sessions, plus a special lunch session for Microsoft MVPs. The sessions I attended varied a...
2010-06-10
651 reads
It’s only day two of the four day conference, and I am already exhausted from attending sessions from 8:00 AM...
2010-06-09
499 reads
TechEd 2010 started today, June 7, and will run through Thursday, June 10, 2010. In the past TechEd has run...
2010-06-08
987 reads
SQL Saturday #22 was held on Saturday, June 5, 2010, with about 224 attendees participating in this free event. It...
2010-06-07
1,088 reads
This month’s question had 21 responses, although a few were duplicates. The question was:
What is your favorite DBA joke?
If you...
2010-06-02
411 reads
If you are planning to submit any sessions to the 2010 PASS Summit, the deadline is Saturday, June 5, 2010....
2010-06-01
399 reads
Post your responses to the above SQL Aloha Question of the Month in the comments section below (at www.bradmcgehee.com if...
2010-05-31
1,383 reads
I’m always trying to find out about the DBAs who visit my blog, as it helps me to better understand...
2010-05-28
1,571 reads
Blogs are a great way to learn new things about SQL Server, and just in case you have missed them,...
2010-05-28
1,581 reads
There have been tens of thousands of blog posts and articles written about Twitter, and because of this, I have...
2010-05-27
750 reads
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...
If you've ever loaded a 2 GB CSV into pandas just to run a...
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