Video: Walk & Talk #002 – RTO
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
221 reads
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
221 reads
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
503 reads
Once you have a query that is returning the data you like in SSMS you have a few options to...
2014-08-19
40,315 reads
Once you have a query that is returning the data you like in SSMS you have a few options to...
2014-08-19
821 reads
Join me at SQL Live 360 this November!
I am hugely excited to have been selected to present at Live 360,...
2014-08-05
399 reads
Join me at SQL Live 360 this November!
I am hugely excited to have been selected to present at Live 360,...
2014-08-05
873 reads
Walk & Talk #001 – Unknown or Null Values
Ride with us in this video as we head to Richmond, Virginia to present...
2014-07-21
617 reads
Blacklist vs Whitelist
Are you on the Whitelist?
I think just about everyone is familiar to some degree with the concepts of...
2014-07-14
3,928 reads
Do you always need a demo?
Is a demo always needed?
One of my more popular presentations I have been doing as...
2014-07-03
669 reads
A new way to train in SQL Server.
I had an idea a few years back about a training event unlike...
2014-06-02
678 reads
I’ve been thinking a lot lately about what it actually takes to make an...
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...
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