Azure Virtual Machine + Premium Disk Throughput Calculator
I keep having to refer to the virtual machine size page and the disks pricing page to work out how...
2017-12-02
23 reads
I keep having to refer to the virtual machine size page and the disks pricing page to work out how...
2017-12-02
23 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got an error message to say “The host cannot be...
2017-11-30
12 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got...
2017-11-30
649 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got...
2017-11-30
211 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got...
2017-11-30
224 reads
I have been playing around with including all my build dependencies in docker for windows lately and had a build that kept giving me this error in the build...
2017-11-22
10 reads
I have been playing around with including all my build dependencies in docker for windows lately and had a build...
2017-11-22
671 reads
I have been playing around with including all my build dependencies in docker for windows lately and had a build...
2017-11-22
262 reads
I have been playing around with including all my build dependencies in docker for windows lately and had a build...
2017-11-22
120 reads
Hey, VSTS YAML builds are my new favorite thing, by like a million miles.
If you have a yaml build definition ( .vsts-ci.yml ) and you want to use one...
2017-11-21
3 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