2010-11-18 (first published: 2009-07-20)
2,930 reads
2010-11-18 (first published: 2009-07-20)
2,930 reads
2010-05-13 (first published: 2009-07-01)
3,816 reads
2010-05-07 (first published: 2009-07-31)
3,291 reads
2009-10-09 (first published: 2009-09-29)
2,053 reads
Quick Method to find Configured???????????????????????? Authentication Mode
2009-07-20 (first published: 2009-07-07)
890 reads
By Steve Jones
A customer was asking recently about the RPO for their estate, and I showed...
By Steve Jones
I’m hosting a webinar tomorrow with Rie Merritt from Microsoft. We’ll be talking about...
By Ed Elliott
All Spark Connect Posts I recently published the latest version of the Spark Connect Dotnet...
Hi All, I am currently testing the Table Partitioning to implement in SQL server...
Comments posted to this topic are about the item STRING_AGG's behavior
Comments posted to this topic are about the item The Role of Databases in...
CREATE TABLE t0 ( id INT PRIMARY KEY , field1 VARCHAR(1000) , field2 VARCHAR(MAX)); INSERT INTO t0 SELECT gs.value , REPLICATE ('X', 1000) , REPLICATE ('Y', 1000) FROM generate_series(1, 10, 1) gs; GO
select STRING_AGG(field1, ';') within group (order by id) from t0;
select STRING_AGG(field2, ';') within group (order by id) from t0;