January Question: As a DBA, how do you manage your disk space?
Managing disk space is an important resposibility of the DBA, and there are many ways to perform this task. In...
2011-01-05
2,088 reads
Managing disk space is an important resposibility of the DBA, and there are many ways to perform this task. In...
2011-01-05
2,088 reads
I recently held a poll on my blog, asking people if they had attended any SQL Server events in the...
2011-01-03
754 reads
Managing disk space is an important responsibility of the DBA, and there are many ways to perform this task. In...
2011-01-01
2,516 reads
As some of you may have already heard, I spent much of December moving from Hawaii to Missouri. Generally, when...
2010-12-29
1,561 reads
Red Gate Software has released a new, free tool for database administrators and developers called SQL Script Manager. It includes...
2010-12-23
741 reads
2010-12-23
3,452 reads
Things have evolved since the days of essential pagers and landline connections. Or have they? Brad ponders how the nature of remote working is evolving, and invites you help others learn from your experiences.
2010-12-13
167 reads
I have always recommended that DBAs be as proactive as possible, catching potential problems, and actual problems, as soon as...
2010-12-09
1,097 reads
One of the things I promote in all my presentations is the importance of being a proactive DBA. Unfortunately, the...
2010-12-02
619 reads
A big part of my DBA career has centered around identifying and sharing SQL Server DBA best practices. There are...
2010-12-02
1,630 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