SQLCover v 0.2 - Bug fixes and Azure V12 Support
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let's you identify where you need to focus when writing tests).
This includes a...
2016-05-05
5 reads
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let's you identify where you need to focus when writing tests).
This includes a...
2016-05-05
5 reads
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let's you identify where...
2016-05-05
595 reads
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let’s you identify where...
2016-05-05
45 reads
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let’s you identify where...
2016-05-05
27 reads
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let’s you identify where...
2016-05-05
42 reads
There seems to be two trains of thought and I think this is mainly down to who and where your developers are. The first is that a stored procedure...
2016-05-05
11 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
37 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
39 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because of the restirctions put on them by the requirements...
2016-05-03
8 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
800 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