2018-02-05
760 reads
2018-02-05
760 reads
The solution which helps to smiplify delivery of a table content in the HTML form using Database mail
2018-01-29
6,812 reads
2018-01-29
928 reads
Set up and use the automatic databases seeding feature for Availability Groups.
2018-01-22
7,682 reads
2018-01-08
1,211 reads
2018-01-04
858 reads
2017-12-07
1,162 reads
2017-12-01
706 reads
2013-08-15
1,914 reads
By Ed Elliott
All Spark Connect Posts I recently published the latest version of the Spark Connect Dotnet...
By Steve Jones
opia – n. the ambiguous intensity of eye contact The entry for this says...
By Steve Jones
This was actually a cool tip I saw internally from one of the product...
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;