What’s the Typical Resignation Notice Period for DBAs?
I was recently talking to a friend from the U.K about how much notice a DBA should give to their...
2009-06-24
2,007 reads
I was recently talking to a friend from the U.K about how much notice a DBA should give to their...
2009-06-24
2,007 reads
In the last year or so, there have been a lot of articles, blog entries,and forum posts on the kinds...
2009-06-23
3,051 reads
I am working on the outline of a new book I am writing, tentatively called Mastering SQL Server Database Maintenance....
2009-06-23
684 reads
The DevTeach/SQLTeach keynote was from Tim Huckaby, founder of InterKnowlogy.
DevTeach/SQLTeach was held this past June 8-12 in Vancouver, BC at...
2009-06-16
735 reads
Are user groups dying out in the age of the Internet? It seemed that way for awhile, but Brad McGehee gives some reasons why you should think about attending a meeting.
2009-06-09
240 reads
Rodney Landrum, SQL Server MVP, and Karla Remail, coordinator of the Pensacola SQL Saturday, give out prizes at the conclusion...
2009-06-06
1,120 reads
I have spoken at many conferences over the years, including the PASS Community Summit and SQL Server Connections, and one...
2009-06-04
709 reads
Brad McGehee provides a "career guide" for DBAs. It is intended both to help prospective DBAs find a "way in" to the profession, and to advise existing DBAs on how they can excel at their jobs, and so become Exceptional DBAs.
2009-06-03
6,629 reads
If you are involved data warehousing, or even if you are just a beginner, you may want to check out...
2009-05-28
1,507 reads
MVP Brad McGegee spends a lot of time talking to people at Microsoft. He's learned how to interpret thier language, and understand what they mean when using certain terms.
2009-05-27 (first published: 2009-05-26)
160 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