tSQLt Test Adapter for Visual Studio 2017
So Visual Studio 2017 has been released a while and I had created a version of the test adapter (which...
2017-10-03
621 reads
So Visual Studio 2017 has been released a while and I had created a version of the test adapter (which...
2017-10-03
621 reads
A free email course on how to use tSQLt including the technical aspects of writing unit tests AND the art of writing repeatable, using unit tests for even the...
2017-09-05
5 reads
A free email course on how to use tSQLt including the technical aspects of writing unit tests AND the art...
2017-09-05
61 reads
A free email course on how to use tSQLt including the technical aspects of writing unit tests AND the art...
2017-09-05
59 reads
A free email course on how to use tSQLt including the technical aspects of writing unit tests AND the art...
2017-09-05
392 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn't order) files. I have been thinking about ssis quite a lot...
2017-09-04
11 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn’t order) files....
2017-09-04
75 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn’t order) files....
2017-09-04
64 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn't order) files....
2017-09-01
565 reads
K-SSIS-ed - View any property or script in SSIS with a single click A cross platform re-imagined IDE and SSIS package viewer with one goal to allow a developer...
2017-08-17
4 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