<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to migrate multiple schema data from oracle db to postgres in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-migrate-multiple-schema-data-from-oracle-db-to-postgres/m-p/2227496#M19086</link>
    <description>&lt;P&gt;How can we migrate around 1900 tables which are in different schema in single database in oracle to postgres schema,&lt;BR /&gt;which is created for migrating these tables in talend 7.2.&lt;BR /&gt;What approach should we follow as we have to create the table structure as well in postgres using talend and each time table&lt;BR /&gt;column will be different and also have multiple schemas in source .Approx data of 1900 tables will be 9 tb.&lt;BR /&gt;Also what type of complexity we will face.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance!!&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 02:06:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T02:06:18Z</dc:date>
    <item>
      <title>How to migrate multiple schema data from oracle db to postgres</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-migrate-multiple-schema-data-from-oracle-db-to-postgres/m-p/2227496#M19086</link>
      <description>&lt;P&gt;How can we migrate around 1900 tables which are in different schema in single database in oracle to postgres schema,&lt;BR /&gt;which is created for migrating these tables in talend 7.2.&lt;BR /&gt;What approach should we follow as we have to create the table structure as well in postgres using talend and each time table&lt;BR /&gt;column will be different and also have multiple schemas in source .Approx data of 1900 tables will be 9 tb.&lt;BR /&gt;Also what type of complexity we will face.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance!!&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:06:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-migrate-multiple-schema-data-from-oracle-db-to-postgres/m-p/2227496#M19086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T02:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to migrate multiple schema data from oracle db to postgres</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-migrate-multiple-schema-data-from-oracle-db-to-postgres/m-p/2227497#M19087</link>
      <description>&lt;P&gt;As suggested in your previous post, t&lt;SPAN&gt;hink the approach of dynamicaly build "CREATE TABLE" requests based on Oracle's ALL_TAB_COLUMNS content.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;This way, you can build on the fly the desired "CREATE TABLE" statements for all desired tables.&lt;/P&gt; 
&lt;P&gt;This &lt;A href="https://gist.github.com/programaker/364005" target="_self" rel="nofollow noopener noreferrer"&gt;link&lt;/A&gt; may helps.&lt;/P&gt; 
&lt;P&gt;Then, as you can't have a predetermined schema for each table, use the same approach to extract data from Oracle source tables and redirect result to a CSV file per table.&lt;/P&gt; 
&lt;P&gt;This &lt;A href="https://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:9536328100346697722" target="_self" rel="nofollow noopener noreferrer"&gt;llink&lt;/A&gt; may helps.&lt;/P&gt; 
&lt;P&gt;Finally, the same method may help to generate COPY statements to import data into target tables.&lt;/P&gt; 
&lt;P&gt;You may also use an external tool such as &lt;A href="https://github.com/lukasmartinelli/pgfutter" target="_self" rel="nofollow noopener noreferrer"&gt;PgFutter&lt;/A&gt;&amp;nbsp;to create tables and import data from CSV files.&lt;/P&gt; 
&lt;P&gt;All the steps can be orchestrated by your Talend job.&lt;/P&gt; 
&lt;P&gt;Enjoy!&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jun 2020 09:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-migrate-multiple-schema-data-from-oracle-db-to-postgres/m-p/2227497#M19087</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2020-06-21T09:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to migrate multiple schema data from oracle db to postgres</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-migrate-multiple-schema-data-from-oracle-db-to-postgres/m-p/2227498#M19088</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;If you have a Talend enterprise licence, then it will be easy to complete your work.&lt;BR /&gt;You can do this in 3/4 Jobs which will use the dynamic schema offered by Talend.&lt;BR /&gt;-Recover all tables from source (SQL query&amp;nbsp;&lt;A href="https://dataedo.com/kb/query/oracle/list-of-tables-in-the-database" target="_self" rel="nofollow noopener noreferrer"&gt;Oracle Table Name&lt;/A&gt;&amp;nbsp; in tDBInput )&lt;BR /&gt;-Recover each column and build table creation requests (make convertion to Postgres with a routines) in the target (tDBInput--&amp;gt;tMap --&amp;gt;tJava--&amp;gt;tDBRow&amp;nbsp;&lt;A href="https://dataedo.com/kb/query/oracle/list-columns-names-in-specific-table" target="_self" rel="nofollow noopener noreferrer"&gt;Get all columns in Oracle Table&lt;/A&gt;&amp;nbsp;)&lt;BR /&gt;-Iterate on the name of the tables and recover the data with the dynamical schema&lt;BR /&gt;You can see a link below that does the same migration work&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D73p000004kkojCAA#M122215" target="_self"&gt;Dynamic migration and Routines Convert&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;If you have other questions, do not hesitate to contact me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 14:13:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-migrate-multiple-schema-data-from-oracle-db-to-postgres/m-p/2227498#M19088</guid>
      <dc:creator>JohnRMK</dc:creator>
      <dc:date>2020-06-22T14:13:04Z</dc:date>
    </item>
  </channel>
</rss>

