Make the 2009 PASS Summit Better: Offer Your Speaking Tips to Others
This year, I was asked to participate on the PASS Program Committee Management team as the “Speaker Manager.” One of...
2009-03-13
845 reads
This year, I was asked to participate on the PASS Program Committee Management team as the “Speaker Manager.” One of...
2009-03-13
845 reads
At the recent MVP conference I attended, Microsoft filmed a promotion for their ad campaign. They had the entire MVP...
2009-03-06
655 reads
If you are thinking about, or planning to attend the 2009 PASS Community Summit, here is your opportunity to tell...
2009-03-06
450 reads
The BoiseCodeCamp and TechFest will be held Saturday, March 28th at Boise State University. This free event include 57 one-hour...
2009-02-26
1,384 reads
If you are interested in speaking at the devLINK Technical Conference in Nashville, TN, August 13-15th, you need to get...
2009-02-25
1,348 reads
Microsoft has introduced a new website (part of Microsoft.com) called Thrive. It is still in its infancy, but its focus...
2009-02-25
1,371 reads
Backup verification is a vital part of a well-designed database maintenance plan and yet some DBAs neglect to do it. Brad McGehee ownders why.
2009-02-24
741 reads
If you use Data Dude (Visual Studio 2008 Team System Database Edition GDR), you might want to check out Gert...
2009-02-20
647 reads
I have always been of the personal opinion that all SQL Server tables have a clustered index. As part of the research I am doing on a new book on High Performance Index Maintenance , and on heaps specifically, I ran across this SQL Server Best Practices...
2009-02-20
5,000 reads
As some of you may know, I am writing a new book called High Performance Index Maintenance. As an experiment...
2009-02-19
810 reads
By Steve Jones
Redgate is a for-profit company. We look to make money by building and selling...
If you've ever loaded a 2 GB CSV into pandas just to run a...
By James Serra
What problem is Fabric Ontology trying to solve? For years, most data conversations have...
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