python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Insert into foreign table partition doesn't work
I have some table in mariadb.
I need to create foreign table partition for that table
CREATE TABLE IF NOT EXISTS users (
id serial NOT NULL,
name varchar(30)
) partition by range(id);
CREATE ...
vantaqada
Votes: 0
Answers: 1
FDW with an IAM DB Auth user
I have a user with role rds_iam so IAM DB Auth is required for the user to connect to my Aurora PostgreSQL server (server A). Which works as expected. I have added a role to Server B that has permissi...
kravb
Votes: 0
Answers: 1
Performance of postgres_fdw via an SSH tunnel
I'm experiencing severe performance issues when trying to access data from a remote Postgresql server running on AWS, accessed via an SSH tunnel, using a foreign data wrapper on a local non-AWS Postgr...
simonhaven
Votes: 0
Answers: 0
Replace Oracle db with Postgres db , add an adapter
I have a source code querying an Oracle database.
Is it possible to replace the Oracle database by a PostgreSQL database without modifying the source code ?
I thought about adding an adapter/wrapper m...
clouvis
Votes: 0
Answers: 1