Updating TSqlModels (DacFx)
This one is for the DacFx nuts out there, it can’t be a very big club but judging from the...
2017-04-26
49 reads
This one is for the DacFx nuts out there, it can’t be a very big club but judging from the...
2017-04-26
49 reads
This one is for the DacFx nuts out there, it can't be a very big club but judging from the...
2017-04-26
392 reads
A teams maturity shows in its choice of tools.
I have seen quite a few different development teams in wildly different environments and the single fact that really stands out...
2017-04-24
9 reads
A teams maturity shows in its choice of tools.
I have seen quite a few different development teams in wildly different...
2017-04-24
37 reads
A teams maturity shows in its choice of tools.
I have seen quite a few different development teams in wildly different...
2017-04-24
35 reads
2017-04-07 (first published: 2015-11-11)
13,055 reads
What is this? Well if you read the name aloud “SQL Server Continuous Deployment in a box” then, if I have done my work correctly choosing the title for...
2017-03-07
10 reads
What is this? Well if you read the name aloud “SQL Server Continuous Deployment in a box” then, if I...
2017-03-07
51 reads
What is this? Well if you read the name aloud “SQL Server Continuous Deployment in a box” then, if I...
2017-03-07
55 reads
What is this?
Well if you read the name aloud "SQL Server Continuous Deployment in a box" then, if I have...
2017-03-07
469 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