How to Evaluate Policies on Multiple Instances
This article describes how to Evaluate Policies on Multiple Instances using EPM and PowerShell.
This article describes how to Evaluate Policies on Multiple Instances using EPM and PowerShell.
Spatial support is coming to SQL Azure soon, and Steve Jones thinks about how the service could improve this support.
I've been using the scripting tools in SSIS for some time, but I came across something today that I can't...
Determining which columns to select for your indexes is critical. Having a little knowledge of how your application is using your database columns and how SQL Server processes indexes helps you make good decisions when you create your indexes.
A guest editorial from Rodney Landrum looks at how we get advice from others in the wild, wild world of the Internet.
In the fourth installment that looks at T-SQL changes for SQL Server 2008, Ashad Ali examines how the Filestream data type works.
Part II or the Oracle / SQL Server comparison dives deeper into databases by exploring the architectural differences.
I was reading through the latest XML Workshop article that I have from Jacob Sebastian. It’s a fantastic series for...
What happens when you burnout? Would you recognize when it happens? A guest editorial from Andy Warren talks about some of the signs and what you can do.
In this article, learn how to use the SQL Server agent proxy to run an SSIS Package under whatever account you choose.
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 The New Software Team
Comments posted to this topic are about the item Database Mail in SQL Server...
Comments posted to this topic are about the item The string_agg function
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