<?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>question Need Help About Apache NiFi in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/388972#M246840</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have MsSql DB and Oracle DB. I am gonna try to explain what I want to do. I am fetching data from MsSQL DB than I am inserting that rows to Oracle DB but this&amp;nbsp;structure not dynamic. Because I created TEST table on both side. So I am writing to table name of processor configuration. I want to create dynamic&amp;nbsp;structure so when I start to flow, I need to migrate all database tables with all rows. But at the same time all tables need to create by processor automatically and when new rows came to MsSQL DB, the flow need to insert only new rows. Any one knows how to do that on Nifi 2.0.0-M3 ?&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jun 2024 09:04:09 GMT</pubDate>
    <dc:creator>omeraran</dc:creator>
    <dc:date>2024-06-10T09:04:09Z</dc:date>
    <item>
      <title>Need Help About Apache NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/388972#M246840</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have MsSql DB and Oracle DB. I am gonna try to explain what I want to do. I am fetching data from MsSQL DB than I am inserting that rows to Oracle DB but this&amp;nbsp;structure not dynamic. Because I created TEST table on both side. So I am writing to table name of processor configuration. I want to create dynamic&amp;nbsp;structure so when I start to flow, I need to migrate all database tables with all rows. But at the same time all tables need to create by processor automatically and when new rows came to MsSQL DB, the flow need to insert only new rows. Any one knows how to do that on Nifi 2.0.0-M3 ?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 09:04:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/388972#M246840</guid>
      <dc:creator>omeraran</dc:creator>
      <dc:date>2024-06-10T09:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help About Apache NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/388981#M246841</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/110978"&gt;@omeraran&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our NiFi experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/38301"&gt;@mburgess&lt;/a&gt;&amp;nbsp;&amp;nbsp;who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 17:20:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/388981#M246841</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2024-06-10T17:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help About Apache NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/388982#M246842</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/110978"&gt;@omeraran&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This use case sounds like a dataflow that would consist of the following:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://nifi.apache.org/documentation/nifi-2.0.0-M2/components/org.apache.nifi/nifi-standard-nar/2.0.0-M2/org.apache.nifi.processors.standard.GenerateTableFetch/index.html" target="_blank"&gt;GenerateTableFetch&lt;/A&gt; --&amp;gt; &lt;A href="https://nifi.apache.org/documentation/nifi-2.0.0-M2/components/org.apache.nifi/nifi-standard-nar/2.0.0-M2/org.apache.nifi.processors.standard.ExecuteSQL/index.html" target="_blank"&gt;ExecuteSQL&lt;/A&gt; --&amp;gt; &amp;lt;any processor you may want to modify, extract, etc content if needed) --&amp;gt; &lt;A href="https://nifi.apache.org/documentation/nifi-2.0.0-M2/components/org.apache.nifi/nifi-standard-nar/2.0.0-M2/org.apache.nifi.processors.standard.PutDatabaseRecord/index.html" target="_blank"&gt;PutDatabaseRecord&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;GenerateTableFetch will ingest rows from your source MySQL DB and maintain use NiFi state to record the maximum values for records so that it can continue to check for any ingest additional rows added.&amp;nbsp; &amp;nbsp;It generates FlowFiles that contain the SQL queries needed by the ExecuteSQL to fetch the rows.&amp;nbsp; &amp;nbsp;I don't know if your use case requires any manipulation, routing modifying, etc, but if so you would do that next.&amp;nbsp; And finally use the PutDatabaseRecord to write your rows to the Oracle DB.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please help our community thrive. If you found&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;any&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on&amp;nbsp;&lt;STRONG&gt;one or more&lt;/STRONG&gt;&amp;nbsp;of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 19:44:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/388982#M246842</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2024-06-10T19:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help About Apache NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/389183#M246909</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/110978"&gt;@omeraran&lt;/a&gt;&amp;nbsp;Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 21:36:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Need-Help-About-Apache-NiFi/m-p/389183#M246909</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2024-06-13T21:36:15Z</dc:date>
    </item>
  </channel>
</rss>

