Re: Exporting TBs of data in Oracle schema/database into CSV formatto migrate into PostgreSQL - Mailing list pgsql-admin

From Thomas Kellerer
Subject Re: Exporting TBs of data in Oracle schema/database into CSV formatto migrate into PostgreSQL
Date
Msg-id c5b9987a-ad9e-ce37-d734-2fb38d1d7330@gmx.net
Whole thread Raw
In response to Exporting TBs of data in Oracle schema/database into CSV format tomigrate into PostgreSQL  (Prashant Kulkarni <ppk10.prashant@gmail.com>)
Responses Re: Exporting TBs of data in Oracle schema/database into CSV formatto migrate into PostgreSQL  (Pepe TD Vo <pepevo@yahoo.com>)
List pgsql-admin
Prashant Kulkarni schrieb am 20.04.2020 um 13:53:
> Hi Team,
>
> Please can you let me know the menthds/tools/approches to export
> large amount of data (TBs) present in the schemas into the
> CSV/delimated format as we have to import that into PostgreSQL
> later.
>
> I tried for options like SQL Developer/Toad but those are not
> feasible for vast data size, these tool are OK for GBs of data to
> export.
>
> Kindly let me know if you have any solution to complete this task.

Using a foreign table would remove the need to dump and transfer
the data to begin with.

Then you could access the Oracle table directly from within Postgres:

insert into some_table (...)
select ...
from oracle_fdw_table;




pgsql-admin by date:

Previous
From: Ron
Date:
Subject: Re: Exporting TBs of data in Oracle schema/database into CSV formatto migrate into PostgreSQL
Next
From: Pepe TD Vo
Date:
Subject: Re: Exporting TBs of data in Oracle schema/database into CSV formatto migrate into PostgreSQL