1. AWS DMS and SCT for Oracle to PostgreSQL Migration: AWS Documentation
"AWS Schema Conversion Tool User Guide
" section "Converting Oracle Schemas to PostgreSQL." This guide details using SCT to convert the source Oracle schema and code to a format compatible with PostgreSQL
and then using DMS to migrate the data.
2. Spatial Data Support in RDS for PostgreSQL: AWS Documentation
"Amazon RDS for PostgreSQL
" section "Working with PostgreSQL extensions
" subsection "PostGIS." This document confirms that the PostGIS extension is supported on RDS for PostgreSQL to "add support for geographic objects."
3. Hybrid Connectivity with Direct Connect: AWS Documentation
"AWS Direct Connect User Guide
" section "What is AWS Direct Connect?." It states
"AWS Direct Connect creates a dedicated private connection between your data center...and AWS. This can reduce network costs
increase bandwidth throughput
and provide a more consistent network experience than internet-based connections." This is the required connectivity for stable foreign table access.
4. PostgreSQL Foreign Data Wrappers: The official PostgreSQL documentation (Version 14
Section 37.3
"Writing a Foreign Data Wrapper") describes the FDW feature. The oraclefdw extension allows a PostgreSQL database to connect to and query a remote Oracle database as if it were a local table
which directly fulfills the requirement. This connection would be established over the Direct Connect link.