The default autogrowth settings do NOT come from the Model database.
I recently saw a question about How to inherit autogrowth settings. They commented that while the new database GUI seemed...
2014-04-28
1,154 reads
I recently saw a question about How to inherit autogrowth settings. They commented that while the new database GUI seemed...
2014-04-28
1,154 reads
I started reading about collations after I had a recent run in with them. As I read I started to...
2014-04-23
542 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-21
469 reads
Recently Paul Randal had a brief rant on twitter where he complained about the fact that there are no stupid...
2014-04-16
410 reads
Recently Paul Randal had a brief rant on twitter where he complained about the fact that there are no stupid...
2014-04-16
603 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-14
668 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-14
462 reads
Why so serious? If you ask anyone who knows me they will tell you I’m not a terribly serious person....
2014-04-11 (first published: 2014-04-08)
1,625 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-10
1,001 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-10
710 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