<?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 Re: Qlik Replicate Oracle connectivity issue in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Oracle-connectivity-issue/m-p/2091400#M6669</link>
    <description>&lt;P&gt;Hello teams,&lt;/P&gt;
&lt;P&gt;It Seems you are Trying to Get the data from Standby DB . These Permission must be granted on the Source Primary DB. Once the Archive apply to STanbdby and Qlik User Mush have Physical access to the folder which you have in the task settings.&lt;/P&gt;
&lt;P&gt;retest the same and let us know your feedback on the same.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Sushil Kumar&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jul 2023 08:08:20 GMT</pubDate>
    <dc:creator>SushilKumar</dc:creator>
    <dc:date>2023-07-07T08:08:20Z</dc:date>
    <item>
      <title>Qlik Replicate Oracle connectivity issue</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Oracle-connectivity-issue/m-p/2091391#M6668</link>
      <description>&lt;P&gt;In the Qlik replicate we are creating a source connection,&amp;nbsp; the client is having Oracle FO (failover)as a source and the database user we are using for configuring the connection has read and write access but does not have the create directory access. As per the client the directory has been created and the path has been given. We have used that archived log and directory path in the configuration window but still facing the connectivity issue.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Error&lt;/STRONG&gt;: "cannot create directory name with path"&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Error and configuration screenshots are attached.&lt;/P&gt;
&lt;P&gt;Please let me know of any workaround.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 07:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Oracle-connectivity-issue/m-p/2091391#M6668</guid>
      <dc:creator>nilesh007</dc:creator>
      <dc:date>2023-07-07T07:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate Oracle connectivity issue</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Oracle-connectivity-issue/m-p/2091400#M6669</link>
      <description>&lt;P&gt;Hello teams,&lt;/P&gt;
&lt;P&gt;It Seems you are Trying to Get the data from Standby DB . These Permission must be granted on the Source Primary DB. Once the Archive apply to STanbdby and Qlik User Mush have Physical access to the folder which you have in the task settings.&lt;/P&gt;
&lt;P&gt;retest the same and let us know your feedback on the same.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Sushil Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 08:08:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Oracle-connectivity-issue/m-p/2091400#M6669</guid>
      <dc:creator>SushilKumar</dc:creator>
      <dc:date>2023-07-07T08:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate Oracle connectivity issue</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Oracle-connectivity-issue/m-p/2091712#M6677</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/162365"&gt;@nilesh007&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;While the Oracle source endpoint access redo log mode set to "&lt;SPAN&gt;&lt;STRONG&gt;Replicate Log Reader&lt;/STRONG&gt;", Replicate will&amp;nbsp;try to find a directory which maps to an Oracle redo log path (in your scenario it's "&lt;STRONG&gt;/ARCH/tb750ip/archives&lt;/STRONG&gt;"). If the directory exists already, Replicate will use it; otherwise, Replicate will create such a directory prior to accessing the redo log files , as this is Oracle mandatory prerequisites.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You may check the directory existence, logon to Oracle by as same account as in the endpoint:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;select directory_name from all_directories where directory_path = '/ARCH/tb750ip/archives';&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Certainly you may also create the directory manually prior to task running (If Replicate detects the directory, then the directory will be used):&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;create or replace directory "ATTUREP_146182DE01TPOL_FO_POC" as&amp;nbsp;'/ARCH/tb750ip/archives';&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;In general the above SQLs are used for troubleshooting. In Replicate task, these jobs can be done automatically if the connection account has enough privileges and you are using Primary node (rather than standby node).&lt;/P&gt;
&lt;P&gt;Now get back to your error, ORA-16000: Database open for read-only access, may reasons may lead this error (some samples):&lt;/P&gt;
&lt;P&gt;1- Privileges issue&lt;BR /&gt;2- If you are using a PDB as source database, then you need to change the open mode from READ ONLY to READ WRITE, eg&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT face="courier new,courier"&gt;alter pluggable database &lt;EM&gt;orclpdb&lt;/EM&gt; open force;&lt;/FONT&gt;&lt;BR /&gt;3- If you are connecting to a Physical Standby DB&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Create the directory in primary DB manually (because standby node is in read only mode always), after the synchronization between primary DB and standby DB completed then Replicate task works.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jul 2023 01:58:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Oracle-connectivity-issue/m-p/2091712#M6677</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-07-08T01:58:36Z</dc:date>
    </item>
  </channel>
</rss>

