2010-12-24
2,331 reads
2010-12-24
2,331 reads
A look at what's happening with the SQLServerCentral servers based on the public information exposed by SQL Monitor.
2010-12-09
1,730 reads
In this webinar, MVP and noted author, Grant Fritchey shows you how to better keep track of what is happening on your instances by gathering information on performance from SQL Monitor and then using that to interpret the impact on your databases. Dec 14, 2010.
2010-12-14 (first published: 2010-12-07)
2,225 reads
Tim Mitchell is the SQLServerCentral correspondent at the 2010 PASS Summit.
2010-11-10
360 reads
Another webinar from SQLServerCentral that examines how you can compress your data on any edition of SQL Server.
2010-10-25 (first published: 2010-10-18)
1,935 reads
2010-10-07
802 reads
2010-03-19
3,311 reads
We have recently made a few changes in our newsletter sending process and been working with Yahoo to ensure delivery. If you are just receiving this newsletter to a Yahoo account, welcome.
2010-02-10
512 reads
2009-12-24
742 reads
2009-11-04 (first published: 2009-10-16)
170 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