How do I use VSTS variables in YAML CI Build definitions?
Hey, VSTS YAML builds are my new favorite thing, by like a million miles.
If you have a yaml build definition...
2017-11-21
438 reads
Hey, VSTS YAML builds are my new favorite thing, by like a million miles.
If you have a yaml build definition...
2017-11-21
438 reads
Hey, VSTS YAML builds are my new favorite thing, by like a million miles.
If you have a yaml build definition...
2017-11-21
40 reads
Hey, VSTS YAML builds are my new favorite thing, by like a million miles.
If you have a yaml build definition...
2017-11-21
37 reads
This post is for a specific type of person if you are:
New to source control Are getting started on your path to the continuous delivery nirvana Have been...
2017-11-16
7 reads
This post is for a specific type of person if you are:
New to source controlAre getting started on your path...
2017-11-16
355 reads
This post is for a specific type of person if you are:
New to source control Are getting started on...
2017-11-16
40 reads
This post is for a specific type of person if you are:
New to source control Are getting started on...
2017-11-16
38 reads
Every AzureRM command I was running I would get an error message telling me to login, I then did a login, checked that I had the right subscription and...
2017-11-15
9 reads
Every AzureRM command I was running I would get an error message telling me to login, I then did a...
2017-11-15
281 reads
Every AzureRM command I was running I would get an error message telling me to login, I then did a...
2017-11-15
61 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