Think You are Good at Designing User Interfaces? Then Prove It and Win!
The Future of Monitoring website, hosted by the Software Development Usability Team at Red Gate Software, is sponsoring a “Design...
2009-10-14
325 reads
The Future of Monitoring website, hosted by the Software Development Usability Team at Red Gate Software, is sponsoring a “Design...
2009-10-14
325 reads
SQL Server MVP Deep Dives, a new book written by 53 SQL Server MVPs, is now available as an eBook,...
2009-10-12
785 reads
I just made a whirlwind trip to Newcastle to speak at the Newcastle Coders Group, on “Getting the Most Out...
2009-10-08
394 reads
SQL Server MVP Deep Dives, a new book written by 53 SQL Server MVPs, is now available as an eBook,...
2009-10-08
565 reads
We should get help from vendors, as well as support, but what about innovation? Today's guest editorial from Brad McGeHee asks if the third party tool vendors for SQL Server are doing enough to provide value for the cost of their tools.
2009-10-06
58 reads
On Friday, October 3, I spoke a second time at Perth, this time at the Perth SQL Server Users Group....
2009-10-06
359 reads
On Friday, October 3, I spoke a second time at Perth, this time at the Perth SQL Server Users Group....
2009-10-06
631 reads
Brad's Sure Guide to Maintenance Plans shows you how to use the Maintenance Plan Wizard and Designer to configure and schedule eleven core database maintenance tasks, ranging from integrity checks, to database backups, to index reorganizations and rebuilds.
2009-10-05
7,906 reads
As the first stop of my five city speaking tour of Australia, I spoke at the Perth .NET Users Group...
2009-10-02
478 reads
As the first stop of my five city speaking tour of Australia, I spoke at the Perth .NET Users Group...
2009-10-01
592 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