New SSDT Projects default to the latest version of SQL Server
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
37 reads
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
37 reads
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
380 reads
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
68 reads
If you already have a source code repository for your app code or other databases or you have another team that uses source control then just use theirs.
If you...
2015-10-09
8 reads
If you already have a source code repository for your app code or other databases or you have another team...
2015-10-09
42 reads
If you already have a source code repository for your app code or other databases or you have another team...
2015-10-09
408 reads
If you already have a source code repository for your app code or other databases or you have another team...
2015-10-09
34 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in version control to deploying to a CI database, running...
2015-10-09
10 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in...
2015-10-09
52 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in...
2015-10-09
23 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 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