Is it possible to support orafce in google postgres cloud sql - google-cloud-sql

we used orafce for our oracle to postgres migration, it work very well.
https://github.com/orafce.
Recently we try to migrate to cloud db, we choose the google cloud, however, I found that the google cloud is not support the orafce extension.
https://cloud.google.com/sql/docs/postgres/extensions#postgresql-extensions-supported-by-cloud-sql
Is it possible to support orafce extension in google cloud?

At the moment “orafce” extension is not supported.
As you can see on this public issue tracker, many other users of Cloud SQL wish for this, I would recommend you to “star” or +1 this public issue in order to show your interest for this feature and by +1 it you will be updated for any changes on the implementation of this feature.

Related

How to share a postgreSQL database?

I'm currently working on a project with some colleagues and a colleague of mine linked a database created in her postgreSQL server to our visual studio project, but we don't know how she can share the database with the rest of us, or how can we modify the database without having it.
We're using postgreSQL 14.
One option is to create your database in a cloud provider such as AWS.
You can take a look at: https://aws.amazon.com/rds/postgresql/
This way all of you will be able to access the database.

Confluence migration from cloud to server

We have migrated a space from cloud instance to server instance,in cloud instance we were using "Plantuml diagrams for confluence" but in server we are using "Confluence PlantUML Plugin" .so macro name are different in both cloud and server ,so macro name for cloud is "plantumlcloud" but for server it is "plantuml".so ,in pages after migration it is showing "plantumlcloud" not a valid macro ,kindly help to resolve.
In general, migration of confluence spaces to another application which is not running the same plugins will cause any functionality of that plugin to break.
If you migrate hosting platforms, and have the equivalent version of the plugin for your new platform, created by the same developer, in most cases you will retain functionality, however there will often be differences between versions.
These differences are found especially when downgrading, and moving from cloud to server is a very definite example of a downgrade, as cloud will always run the latest version.
In general I would reccomend against a migration from cloud to server, and when it must be done, time should be spent to ensure compatability with all plugins, and migration guides and plans should be made and followed.
As commented by #tgdavies, there seems to be an equivelent version of the plugin you were using on cloud, so hopefully that can resolve your issue.

How to install external extensions in GCP's PostgreSQL

I see here that only allowed extensions can be installed on PostgreSQL in Google Cloud Platform. Is there any possibility to add an extension that is not listed in supported extensions? The extension I need is pg_semver.
There are two options here for your use case:
Use a Compute Engine instance as SQL database, rather than
CloudSQL and you will be able to install any extension you would
need to.
As stated on the official documentation you can open a Feature Request (FR) to the CloudSQL eng
team in order to evaluate it and let you know if it will be
implemented or not in the future.
Bear in mind that feature requests
have not ETA.

How to deploy the postgresql server in Google cloud

I am trying to deploy my postgresql server to google cloud, like how we deploy in heroku. But i am not finding any tutorial or proper docs to start.
Can any one please help me in this, Thanks!
You can easily migrate a postgres database to Google Cloud SQL.
Basically it involves, creating an SQL instance, a replication using a Compute engine VM. Then seeding, and migrating your data.
The official documentation for this from google is here;
Migrate an on-premises PostgreSQL cluster to Google Cloud
This is a very good post giving a detailed step by step guide for the entire process.
How to migrate PostgreSQL databases to Google Cloud SQL

Trying to connect to connect Google Sheet script to a Postgres Google Cloud SQL instance

I'm writing a script to connect a Google sheet to GCP Postgres instance, unfortunately I only see documentation for MySQL. Do you know if there is support for Google scripting/Postgres integration?
Thanks.
Google Apps Script has JDBC connectors but they do not have support for Postgres as yet.
Currently Apps Script's JDBC connectors only support Cloud SQL(MySQL), MySQL, MSSQL, and Oracle databases as listed in the opening paragraph of the JDBC documentation.
Yes, Apps Script JDBC connectors do not support Postgres, still. If you don't want to build your own script, you can use database connector addons. Most of them support Postgres.