2020-07-24
81 reads
2020-07-24
81 reads
2020-02-21
735 reads
Steve doesn't like the idea of cars using data from cameras to update a display instead of a mirror.
2019-09-30
172 reads
"This time when we go to the Moon, we're actually ...
2019-05-23
2019-05-10
Brent Ozar asks if you can tell if each of these SQL Server bugs is brand-new, or almost 20 years old.
2019-05-03
The Vineyard Wind project will also commit $15 million to battery development.
2019-04-24
American auto shows are in decline, but we still found a few things to excite.
2019-04-22
The Panamera Turbo comes in two flavors, and the more powerful one is a hybrid.
2019-04-11
This week’s T-SQL Tuesday is about where you use databases in your personal life. And I have a database I don’t use any more that’s a little happy and...
2019-04-09
By Patrick
SQL Server Audit is an efficient way to track and log events that occur...
I presented at SQL Saturday Pittshburgh this past weekend about populating your data warehouse...
By Steve Jones
A customer was asking recently about the RPO for their estate, and I showed...
Hi all, I'm on a sql server 2019 standard edition (15.0.4375.4) where I've a...
Dear All, I am facing issue when update my license SRSS 2022 from...
Hey all, Just wondering how do you guys / girls set up git repo(s)...
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;