Skip to main content
-1 votes
0 answers
25 views

My publisher is running PostgreSQL 17 and the subscriber is on PostgreSQL 13. What I am trying to do My goal is to upgrade PostgreSQL from version 13 to 18 on the subscriber side. Because our ...
0 votes
1 answer
124 views

This issue recently popped up after a macOS update probably Tahoe 26 but when I try to request a page of my website that uses Homebrew Apache PHP-FPM Memcached with PostgreSQL and PHP 8.4 files on OSX ...
1 vote
1 answer
78 views

I'm trying to figure out how I can add a new primary key column using the new UUIDv7 from PostgreSQL v18. From reading online. It seems I can add them like this with code: profile_id UUID PRIMARY KEY ...
2 votes
0 answers
40 views

I am attempting to logically replicate a production postgres instance to facilitate a blue/green major version upgrade from 13 -> 18 (don't ask). First, I start a replication slot on the blue (...
Advice
0 votes
3 replies
82 views

I'm trying to run postgresql. after checking their document, I added this volume mount /path/to/data:/var/lib/postgresql/18/docker my container failed immedeately, chmod: changing permissions of '/var/...
0 votes
1 answer
219 views

Considering the following SQL code: create table test (a int, b int) ; create type tst as (a int, b int) ; create function tst (a int, b int) returns tst[] language sql immutable as $$ select array(...
1 vote
0 answers
55 views

We are converting a large database system from SQL Server 2022 to Postgres 18. The SQL Server collation is Latin1_General_CI_AS. The Postgres database default collation is English_United Kingdom.1252. ...
1 vote
0 answers
39 views

Postgres 18 ANALYZE documentation states: table_and_columns is: [ ONLY ] table_name [ * ] [ ( column_name [, ...] ) ] Note the '*', which is not present in Postgres 17 ANALYZE documentation. ...
4 votes
1 answer
388 views

pg_upgrade 18 docs state that pg_upgrade will transfer most optimizer statistics from the old cluster to the new cluster The docs also state that pg_upgrade supports upgrades from 9.2.X and later ...