Refactoring in SQL Server Data Tools - SSDT
In this post I will talk about the in-built refactoring support in SSDT – the language is slightly different from my...
2016-09-27
58 reads
In this post I will talk about the in-built refactoring support in SSDT – the language is slightly different from my...
2016-09-27
58 reads
In this post I will talk about the in-built refactoring support in SSDT – the language is slightly different from my...
2016-09-27
25 reads
In this post I will talk about the in-built refactoring support in SSDT – the language is slightly different from my...
2016-09-27
1,344 reads
The ideal is to make a change and see that change deployed to production, in a perfect world we would be told to work on something, write the code...
2016-09-20
6 reads
The ideal is to make a change and see that change deployed to production, in a perfect world we would...
2016-09-20
36 reads
The ideal is to make a change and see that change deployed to production, in a perfect world we would...
2016-09-20
42 reads
tSQLt Visual Studio Test Adapter
What is this?
This lets you use Visual Studio to run tSQLt tests easily. Visual Studio has...
2016-08-24 (first published: 2016-08-17)
2,270 reads
I have been thinking quite a lot recently (ok not that much but my thinking has changed) about how to deploy dacpac's. In particular I am talking about how...
2016-08-21
12 reads
I have been thinking quite a lot recently (ok not that much but my thinking has changed) about how to...
2016-08-21
56 reads
I have been thinking quite a lot recently (ok not that much but my thinking has changed) about how to...
2016-08-21
66 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