How to Performance Tune a VLDB on your Desktop
Recently, I wrote a review of Red Gate Software’s new SQL Virtual Restore software. SQL Virtual Restore allows you to...
2010-08-17
930 reads
Recently, I wrote a review of Red Gate Software’s new SQL Virtual Restore software. SQL Virtual Restore allows you to...
2010-08-17
930 reads
Where can you spend $100 and get three full days of technical training? devLINK of course. devLINK 2010 was held...
2010-08-08
511 reads
Post your responses to the above SQL Aloha Question of the Month in the comments section below (at www.bradmcgehee.com if...
2010-08-02
606 reads
This month’s question of the month was:
Tell us your story of how you happened to become a DBA.
This month, the...
2010-08-02
384 reads
While I have always known that the Windows operating system Power Plan options affect a server’s performance, I had not...
2010-07-27
1,059 reads
Sometimes, its just the smallest of details that can make all the difference. For example, on my test system (see...
2010-07-27
3,072 reads
Sometimes, its just the smallest of details that can make all the difference. For example, on my test system (see...
2010-07-21
3,374 reads
The SQL Server DMV Starter Pack is a free eBook (84 pages) that describes 28 different ways that DMVs can...
2010-07-20
4,900 reads
Red Gate Software has recently opened up its SQL Response v2 Early Release Program (EAP), and is inviting anyone who...
2010-07-17
962 reads
November will be a busy time of the year for many SQL Server DBAs as they head off to the...
2010-07-14
675 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