Geek of the Week
I made geek of the week. I’m sorry, but I’m excited by that. I’m very proud to be a geek....
2009-11-06
647 reads
I made geek of the week. I’m sorry, but I’m excited by that. I’m very proud to be a geek....
2009-11-06
647 reads
The day started off with a mixed bag. First we had an honestly tearful farewell with Wayne Snyder saying goodbye to...
2009-11-06
1,531 reads
Day 2 of the Summit was extremely busy. I missed a breakfast on DMV’s that evidently was one of the...
2009-11-05
1,353 reads
Wow, the bloggers table is empty today!
Nice intro! Good photo’s. I love the Summit!
Bill Graziano is introducing Day 3. He...
2009-11-05
1,319 reads
Patrick Ortiz from Dell, the platinum sponsor for the PASS Summit.
The goal will be to discuss the Dell Microsoft Practice,...
2009-11-05
510 reads
Dr. David DeWitt
“I’m not a doctor.” This is going to be good. “From 1 to 1000 MIPS” He’s doing great....
2009-11-05
685 reads
YAAAAAH!
The PASS Summit is pretty amazing. Yesterday I sat through the key notes from Microsoft. I was at the bloggers...
2009-11-04
565 reads
Nice phot montage, included so many friends. I love PASS.
Rushab Mehta launching the Wednesday key note. Unfortunately, this is the...
2009-11-04
508 reads
Tom Casey of Microsoft on BI.
20% of people that are decision makers within organizations have the tools and information they...
2009-11-04
591 reads
More demos using Analysis Services from R2. They’re showing how you can refresh data & reports without having to write a...
2009-11-04
557 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