<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - Oracle</title>
        <description>Forum for Oracle migration issues.</description>
        <link>https://forums.mysql.com/list.php?61</link>
        <lastBuildDate>Mon, 13 Apr 2026 17:49:14 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?61,709840,709840#msg-709840</guid>
            <title>HTML tags and special characters issue (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,709840,709840#msg-709840</link>
            <description><![CDATA[ Hello everyone,<br />
<br />
We are facing special characters and HTML tags issue in our data. we are trying to load the data from Hive to Oracle DB through IICS(informatica cloud).Hive data is populating correctly but data in oracle is getting populated with HTML tags and some special characters. This is for datatype CLOB columns only.<br />
<br />
Need help to remove the tags and characters.<br />
<br />
Regards,<br />
Koushik.]]></description>
            <dc:creator>Koushik Neelakantha</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 25 Aug 2023 11:13:59 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,706908,706908#msg-706908</guid>
            <title>Oracle&#039;s Sequence alternatives in MySQL (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,706908,706908#msg-706908</link>
            <description><![CDATA[ We are migrating all our applications from OracleDB to MySQL, and we have some concerns. We want to know if MySQl covers the next feature offered by OracleDB:<br />
- Sequences: We use sequences to generate the primary keys of our data, is it possible to do the same in MySQL? We care a lot about the performance when inserting new values, and I&#039;ve been told that MySQL&#039;s auto increment is slower than Oracle&#039;s Sequences.<br />
<br />
Also, does the MySQL paid version offer support for migrating from oracle to MySQL? Is there a tool to automatically migrate all data?]]></description>
            <dc:creator>Julián Jorge Sanmartino</dc:creator>
            <category>Oracle</category>
            <pubDate>Sun, 09 Jul 2023 22:04:47 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,699834,699834#msg-699834</guid>
            <title>Can&#039;t Connect To MySQL Local Database From Local Node App (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,699834,699834#msg-699834</link>
            <description><![CDATA[ CONSOLE OUTPUT<br />
==============<br />
<br />
[nodemon] starting `node app.js`<br />
HTTP Server for NodeApp started at port 3000<br />
We&#039;re in to the back end of NodeApp !<br />
Someone has POSTed data to the Node server ...<br />
URL trimmed endpoint: reg-user<br />
Input Value: tamjk<br />
In router.js now ...<br />
Endpoint: reg-user       Data: tamjk<br />
Handler: authen.js<br />
In handler authen.js now ...<br />
Mode: reg  Field: user  Value: tamjk<br />
In format validation now ...<br />
Format Validation Message: Valid format<br />
Connecting to user-data database checking user ...<br />
In MySQL Query script now ...<br />
Query: SELECT user FROM users WHERE user = &#039;tamjk&#039;<br />
Router returned message undefined<br />
Callback Message: undefined<br />
Message: undefined<br />
Sent back response: undefined<br />
_http_outgoing.js:696<br />
    throw new ERR_INVALID_ARG_TYPE(&#039;first argument&#039;,<br />
    ^<br />
<br />
TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be of type string or an instance of Buffer or Uint8Array. Received undefined<br />
    at write_ (_http_outgoing.js:696:11)<br />
    at ServerResponse.write (_http_outgoing.js:661:15)<br />
    at reqCallback (/home/sandbar/Desktop/nodeapp-local/app.js:116:6)<br />
    at IncomingMessage.&lt;anonymous&gt; (/home/sandbar/Desktop/nodeapp-local/app.js:87:10)<br />
    at IncomingMessage.emit (events.js:327:22)<br />
    at endReadableNT (_stream_readable.js:1327:12)<br />
    at processTicksAndRejections (internal/process/task_queues.js:80:21) {<br />
  code: &#039;ERR_INVALID_ARG_TYPE&#039;<br />
}<br />
[nodemon] app crashed - waiting for file changes before starting...]]></description>
            <dc:creator>Kon Tiki</dc:creator>
            <category>Oracle</category>
            <pubDate>Thu, 18 Nov 2021 18:57:13 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,697987,697987#msg-697987</guid>
            <title>How do I calculate my Storage Clause values? (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,697987,697987#msg-697987</link>
            <description><![CDATA[ Hey, can someone please tell me how do i calculate the values for my storage the one i have here doesn&#039;t work and throws a error. Thank you very much.<br />
<br />
Create table MOVIE<br />
<br />
(<br />
<br />
MOVIE_ID number(10) PRIMARY KEY NOT NULL,<br />
<br />
MOVIE_NAME Varchar2(55),<br />
<br />
MOVIE_RELEASE_DATE date,<br />
<br />
MOVIE_RATING Varchar2(5) DEFAULT &#039;NR&#039;,<br />
<br />
CHECK (MOVIE_RATING = &#039;G&#039;OR MOVIE_RATING = &#039;PG&#039; OR MOVIE_RATING = &#039;PG-13&#039; OR MOVIE_RATING = &#039;R&#039; OR MOVIE_RATING = &#039;NC&#039;),<br />
<br />
  TOTAL_SALES number(10),<br />
<br />
  STORAGE (INITIAL 1G NEXT 50K MINEXTENTS 1 MAXEXTENTS 5 PCTINCREASE 50 )<br />
<br />
);<br />
<br />
<br />
<br />
CREATE TABLE Producer(<br />
<br />
  Pro_ID number(10) PRIMARY KEY NOT NULL,<br />
<br />
  MOVIE_ID number(10) NOT NULL UNIQUE,<br />
<br />
  Pro_fname Varchar2(30),<br />
<br />
  Pro_lname Varchar2(30),<br />
<br />
  FOREIGN KEY (MOVIE_ID) REFERENCES MOVIE(MOVIE_ID),<br />
<br />
  STORAGE (INITIAL 1G NEXT 50K MINEXTENTS 1 MAXEXTENTS 5 PCTINCREASE 50 )<br />
<br />
);<br />
<br />
<br />
<br />
CREATE TABLE Theater(<br />
<br />
  Tht_ID number(10) PRIMARY KEY NOT NULL,<br />
<br />
  MOVIE_ID number(10) NOT NULL,<br />
<br />
  Tht_name Varchar2(55),<br />
<br />
  Tht_address Varchar2(350),<br />
<br />
  Tickets_sold NUMBER(19),<br />
<br />
  CHECK (Tickets_sold &gt;=0),<br />
<br />
  FOREIGN KEY (MOVIE_ID) REFERENCES MOVIE(MOVIE_ID),<br />
<br />
  STORAGE (INITIAL 1G NEXT 50K MINEXTENTS 1 MAXEXTENTS 5 PCTINCREASE 50 )<br />
<br />
);<br />
<br />
<br />
<br />
CREATE TABLE Ticket_Price(<br />
<br />
  Ticket_ID number(10) PRIMARY KEY NOT NULL,<br />
<br />
  MOVIE_ID number(10) NOT NULL,<br />
<br />
  Tht_ID number(10) NOT NULL UNIQUE,<br />
<br />
  Ticket_Price number(10) ,<br />
<br />
  CHECK (Ticket_Price &gt;=0),<br />
<br />
  FOREIGN KEY (MOVIE_ID) REFERENCES MOVIE(MOVIE_ID),<br />
<br />
  FOREIGN KEY (Tht_ID) REFERENCES Theater(Tht_ID),<br />
<br />
  STORAGE (INITIAL 1G NEXT 50K MINEXTENTS 1 MAXEXTENTS 5 PCTINCREASE 50 )<br />
<br />
);<br />
<br />
<br />
<br />
<br />
<br />
CREATE TABLE Main_Actor(<br />
<br />
  Actor_ID number(10) PRIMARY KEY NOT NULL,<br />
<br />
  MOVIE_ID number(10) NOT NULL,<br />
<br />
  First_Name Varchar2(20),<br />
<br />
  Last_Name Varchar2(20),<br />
<br />
  Payment_amount number(10),<br />
<br />
  CHECK (Payment_amount &gt;0),<br />
<br />
  FOREIGN KEY (MOVIE_ID) REFERENCES MOVIE(MOVIE_ID),<br />
<br />
  STORAGE (INITIAL 1G NEXT 50K MINEXTENTS 1 MAXEXTENTS 5 PCTINCREASE 50 )<br />
<br />
);<br />
<br />
<br />
<br />
CREATE TABLE Supporting_Actor(<br />
<br />
  sActor_ID number(10) PRIMARY KEY NOT NULL,<br />
<br />
  MOVIE_ID number(10) NOT NULL,<br />
<br />
  First_Name Varchar2(20),<br />
<br />
  Last_Name Varchar2(20),<br />
<br />
  Payment_amount number(10),<br />
<br />
  CHECK (Payment_amount &gt;0),<br />
<br />
  FOREIGN KEY (MOVIE_ID) REFERENCES MOVIE(MOVIE_ID),<br />
<br />
  STORAGE (INITIAL 1G NEXT 50K MINEXTENTS 1 MAXEXTENTS 5 PCTINCREASE 50 )<br />
<br />
);]]></description>
            <dc:creator>Naveen Thinarthan</dc:creator>
            <category>Oracle</category>
            <pubDate>Thu, 05 Aug 2021 10:20:51 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,693655,693655#msg-693655</guid>
            <title>Unable to start msyqld service after modifying datadir from default /var/lib/mysql to /u01/mysql (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,693655,693655#msg-693655</link>
            <description><![CDATA[ Hi,<br />
<br />
Mysql Version : Server version: 8.0.22 MySQL Community Server - GPL<br />
OS Version : OEL 7.9 <br />
<br />
I am unable to start mysqld service after I changed datadir location from default /var/lib/mysql to /u01/mysql<br />
<br />
2020-12-22T13:28:34.343524Z 0 [Warning] [MY-010091] [Server] Can&#039;t create test file /u01/mysql/mysqld_tmp_file_case_insensitive_test.lower-test<br />
2020-12-22T13:28:34.343623Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.22) starting as process 68273<br />
2020-12-22T13:28:34.348703Z 0 [Warning] [MY-010091] [Server] Can&#039;t create test file /u01/mysql/mysqld_tmp_file_case_insensitive_test.lower-test<br />
2020-12-22T13:28:34.348716Z 0 [Warning] [MY-010159] [Server] Setting lower_case_table_names=2 because file system for /u01/mysql/ is case insensitive<br />
2020-12-22T13:28:34.349653Z 0 [ERROR] [MY-010119] [Server] Aborting<br />
2020-12-22T13:28:34.349907Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.22)  MySQL Community Server - GPL.<br />
<br />
Please help to fix this issue. <br />
<br />
Best Regards<br />
Jamsher]]></description>
            <dc:creator>Jamsher Khan</dc:creator>
            <category>Oracle</category>
            <pubDate>Tue, 22 Dec 2020 17:25:23 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,691681,691681#msg-691681</guid>
            <title>MySQL CPU usage and CPU wait (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,691681,691681#msg-691681</link>
            <description><![CDATA[ Hi,<br />
For Oracle and SQL Server we could get the CPU usage and CPU wait information at the statement/request level, is there any equivalent in MySQL?]]></description>
            <dc:creator>Yossi Nixon</dc:creator>
            <category>Oracle</category>
            <pubDate>Sun, 06 Dec 2020 11:51:36 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,690963,690963#msg-690963</guid>
            <title>Variable select_full_join (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,690963,690963#msg-690963</link>
            <description><![CDATA[ Hello. If the select_full_join variable is increased, then, as they say in the manuals, it is necessary to take all measures to optimize queries. But if a ready-made program is used and queries cannot be optimized, can the join_buffer_size parameter be increased? Will it give something.]]></description>
            <dc:creator>George Kup</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 06 Nov 2020 14:56:08 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,690717,690717#msg-690717</guid>
            <title>MySQL  Vs Oracle (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,690717,690717#msg-690717</link>
            <description><![CDATA[ What are the advantages of MySQL when compared with Oracle?]]></description>
            <dc:creator>Aqib Gulzar</dc:creator>
            <category>Oracle</category>
            <pubDate>Wed, 21 Oct 2020 10:14:03 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,689285,689285#msg-689285</guid>
            <title>Help me to convert oracle data base into SQL (3 replies)</title>
            <link>https://forums.mysql.com/read.php?61,689285,689285#msg-689285</link>
            <description><![CDATA[ My website is <a href="https://packagingbee.com"  rel="nofollow">https://packagingbee.com</a> and I want my database to be converted from oracle to MySQL. Plz help currently I&#039;, using wordpress]]></description>
            <dc:creator>John Thombson</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 07 Aug 2020 16:34:56 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,688209,688209#msg-688209</guid>
            <title>How to read an Online view available in oracle from MySQL (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,688209,688209#msg-688209</link>
            <description><![CDATA[ How to read an Online view available in oracle from MySQL.I need to read the data from MySQL. <br />
From Oracle I can read MySQL Data through DB Link.<br />
Regards,]]></description>
            <dc:creator>Alex Kuruvilla</dc:creator>
            <category>Oracle</category>
            <pubDate>Thu, 11 Jun 2020 14:42:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,688010,688010#msg-688010</guid>
            <title>Is there PL/SQL like backend langauge in MySQL? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,688010,688010#msg-688010</link>
            <description><![CDATA[ Hi, new to MYSQL.<br />
<br />
I want to know if MySQL has an equivalent to PL/SQL in Oracle???<br />
<br />
Does MySQL have packages, functions, procedures, data types like PL/SQL???]]></description>
            <dc:creator>Sebastian Vasta</dc:creator>
            <category>Oracle</category>
            <pubDate>Sun, 31 May 2020 19:58:36 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,686536,686536#msg-686536</guid>
            <title>Migrating data from oracle to mysql (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,686536,686536#msg-686536</link>
            <description><![CDATA[ I need to migrate the data from oracle 12c to Mysql latest community version how to migrate easily please suggest for migrate the data. Thanks in advance.]]></description>
            <dc:creator>Hemkalyan Pal</dc:creator>
            <category>Oracle</category>
            <pubDate>Tue, 23 Jun 2020 22:58:44 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,678236,678236#msg-678236</guid>
            <title>Get last record/row in a table (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,678236,678236#msg-678236</link>
            <description><![CDATA[ I want to get the last record/row in a table.  I believe the way to do it is by using &quot;order by&quot; but in reverse order.  But how do I specify &quot;reverse order&quot;?]]></description>
            <dc:creator>Michael Pettinicchi</dc:creator>
            <category>Oracle</category>
            <pubDate>Sat, 21 Sep 2019 21:02:30 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,673315,673315#msg-673315</guid>
            <title>Migrating data from oracle to mysql (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,673315,673315#msg-673315</link>
            <description><![CDATA[ Hello everyone,<br />
<br />
I need to migrate the data from oracle 12c to Mysql community version 5.1. I have tried with option migration wizard using Mysql work bench. But no luck it not working.. Any idea to migrate the data. Thanks in advance.]]></description>
            <dc:creator>sreekanth pm</dc:creator>
            <category>Oracle</category>
            <pubDate>Tue, 12 Mar 2019 14:49:22 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,673210,673210#msg-673210</guid>
            <title>Database Migration from Oracle to MySQL (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,673210,673210#msg-673210</link>
            <description><![CDATA[ I have Oracle database and I want to migrate tables and Store procedures from Oracle to MySQL.Please suggest any tools to do this task.]]></description>
            <dc:creator>vicky garg</dc:creator>
            <category>Oracle</category>
            <pubDate>Tue, 05 Mar 2019 21:27:26 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,667577,667577#msg-667577</guid>
            <title>How to skip the validation of primary Key in MYSQL (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,667577,667577#msg-667577</link>
            <description><![CDATA[ i am trying to migrate the database from oracle to MYSQL. Oracle has duplicate values in a table, i am assuming primary key might  have been enabled with novalidate option. Could someone guide me the equivalent method to perform the same in MYSQL.<br />
<br />
Note:- i have tried &#039;alter table table_name add primary key (column1, column2) enable novlidate&#039; , but this didnt work.]]></description>
            <dc:creator>krishna kumar</dc:creator>
            <category>Oracle</category>
            <pubDate>Wed, 11 Jul 2018 00:37:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,666099,666099#msg-666099</guid>
            <title>Migrate oracle database to Mysql (3 replies)</title>
            <link>https://forums.mysql.com/read.php?61,666099,666099#msg-666099</link>
            <description><![CDATA[ Hello Everyone,<br />
<br />
I need to migrate my oracle database to MySQL. Please guide me on the options, how I can migrate it whether by using an open source tool, paid tool or by any other way.<br />
<br />
<br />
Thanks in advance. Any help appreciable.]]></description>
            <dc:creator>Amar Prabhat</dc:creator>
            <category>Oracle</category>
            <pubDate>Thu, 24 May 2018 08:14:17 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,665869,665869#msg-665869</guid>
            <title>migration issue from mysql5.7.17-log to oracle11g (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,665869,665869#msg-665869</link>
            <description><![CDATA[ when trying to migrate from mysql5.7.17-log to oracle11g, I am getting error as &quot;migration actions have failed. check the migration reports for details: capture classic capture you have an error in SQL syntax. Check the manual that corresponds to your MYSQL server version for the right syntax to use near &#039;-old&#039; at line 1&quot;. Please suggest how to get rid if this. Thanks]]></description>
            <dc:creator>Rajesh K</dc:creator>
            <category>Oracle</category>
            <pubDate>Tue, 24 Apr 2018 16:53:11 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,665273,665273#msg-665273</guid>
            <title>C (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,665273,665273#msg-665273</link>
            <description><![CDATA[ I AM CURIOUS TO KNOW WHY THERE IS ANOTHER DB FROM ORACLE WHERE THRE IS ALREADY ONE. LONG STORY SHORT WHAT WAY MYSQL IS SPECIAL THAN NORMAL ORACLE.]]></description>
            <dc:creator>Rajesh K</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 30 Mar 2018 16:40:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,663236,663236#msg-663236</guid>
            <title>DISABLING a TRIGGER and RESTARTING one database in MYSQL (1 reply)</title>
            <link>https://forums.mysql.com/read.php?61,663236,663236#msg-663236</link>
            <description><![CDATA[ Hello Experts,<br />
<br />
I am in need to disable a specific trigger &quot;SET_DUE_DATE&quot; which has been set for a particular DB, and then i need to restart that DB alone.<br />
<br />
Can you help me with the steps to be followed. I would also need your help to see if this trigger has been disabled, post disabling. <br />
<br />
Please let me know how i can achieve this.]]></description>
            <dc:creator>HITESH SHETTY</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 22 Dec 2017 15:35:35 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,657375,657375#msg-657375</guid>
            <title>mysql command line client (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,657375,657375#msg-657375</link>
            <description><![CDATA[ Hello!<br />
<br />
How can I install the mysql command line Client for the mysql Oracle Server?<br />
<br />
<br />
I am running a Windows machine, where I see mysql in start - Programme - Mysql Folder. <br />
<br />
However I do not see any link to the mysql command line Client.<br />
<br />
I opend the Windows command line and entered mysql -help: nothing happened<br />
<br />
I hope someone can help me<br />
<br />
Regards<br />
<br />
Bruno]]></description>
            <dc:creator>Bernhard Sept</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 12 May 2017 15:41:49 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,656660,656660#msg-656660</guid>
            <title>link between oracle and mysql (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,656660,656660#msg-656660</link>
            <description><![CDATA[ SQL&gt; select * from bike @link1;<br />
<br />
mno        bname           count<br />
---------- ---------- ----------<br />
duke       ktm                 6<br />
apache     tvs                29<br />
activa     honda              24<br />
fz-16      yamaha             16<br />
<br />
SQL&gt; select mno from bike;<br />
<br />
MNO<br />
----------<br />
duke<br />
apache<br />
activa<br />
fz-16<br />
<br />
SQL&gt; select mno from rsk.bike @link1;<br />
select mno from rsk.bike @link1<br />
       *<br />
ERROR at line 1:<br />
ORA-00904: &quot;MNO&quot;: invalid identifier<br />
<br />
<br />
i have created a link for mysql in my oracle but i can select all the rows<br />
you can see that on the above code then why cann&#039;t access the single row from<br />
mysql. And also i can&#039;t update the specific value in mysql via oracle using link]]></description>
            <dc:creator>suresh kumar</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 07 Apr 2017 23:48:05 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,654361,654361#msg-654361</guid>
            <title>How to replace the TABLE identifier generator with either SEQUENCE or IDENTITY in a portable way (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,654361,654361#msg-654361</link>
            <description><![CDATA[ How to replace the TABLE identifier generator with either SEQUENCE or IDENTITY in a portable way<br />
<br />
<a href="https://vladmihalcea.com/2017/01/17/how-to-replace-the-table-identifier-generator-with-either-sequence-or-identity-in-a-portable-way/"  rel="nofollow">https://vladmihalcea.com/2017/01/17/how-to-replace-the-table-identifier-generator-with-either-sequence-or-identity-in-a-portable-way/</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Oracle</category>
            <pubDate>Wed, 18 Jan 2017 03:21:54 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,653359,653359#msg-653359</guid>
            <title>Invalid column number - Delayed binding at fetch time failed (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,653359,653359#msg-653359</link>
            <description><![CDATA[ Hi<br />
<br />
We use Informatica service to read from MySQL DB.  We are experiencing an inconsistent issue where the job fails with the below error.  When we simply restart the job, it completes without any issues.  The columns are mapped to their corresponding equivalent data types available in Informatica and most of the times the job completes without any issues. <br />
<br />
Can you please advise what situation the below error would occur? <br />
Note:<br />
It takes less than 5 mins to complete the job, but whenever there is issue, the job runs for over 2 hrs and then eventually gives the below error, at which point we restart the job that completes as expected.<br />
<br />
<br />
2016-12-11 13:46:40 : ERROR : (43956 | READER_1_2_1) : (IS | uat_integration_service_bd) : node09_dukebiqd88 : RR_4035 : SQL Error [<br />
FnName: Bind Col -- [MySQL][ODBC 3.51 Driver][mysqld-5.6.20-log]Invalid column number<br />
Database driver error...Delayed binding at fetch time failed.].]]></description>
            <dc:creator>Ashok Kumar Jayaraman</dc:creator>
            <category>Oracle</category>
            <pubDate>Mon, 12 Dec 2016 05:15:12 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,652398,652398#msg-652398</guid>
            <title>connecting MySQL to Oracle database (2 replies)</title>
            <link>https://forums.mysql.com/read.php?61,652398,652398#msg-652398</link>
            <description><![CDATA[ Hi,<br />
<br />
How can I connect MySQL 5.6 to Oracle 11g database to fetch data from Oracle database tables.  <br />
<br />
MySQL is installed on a Windows server 2012 in a Virtual machine and Oracle database is on Linux.<br />
<br />
Thank you.]]></description>
            <dc:creator>sonu jha</dc:creator>
            <category>Oracle</category>
            <pubDate>Sun, 13 Nov 2016 06:29:40 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,651417,651417#msg-651417</guid>
            <title>ndb cluster data node ulimit settings (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,651417,651417#msg-651417</link>
            <description><![CDATA[ In an NDB cluster setup on a VM environment, we have configured management node, data node and sql node in a single node, with 2 servers in cluster.<br />
<br />
So both nodes have management node, data node and sql node components.<br />
What should be the value for &quot;max locked memory&quot;. It&#039;s 64KB by default on most Linux systems; of course, this is very small for a data node. <br />
<br />
Whats the implication of setting it to &quot;unlimited&quot; in an NDB cluster environment? Whats the use of this parameter?<br />
<br />
NDB Server version: 5.6.29-ndb-7.4.11-cluster-commercial-advanced-log<br />
Storage provisioned through Oracle VM<br />
OS: RHEL 6.5]]></description>
            <dc:creator>Subhajit Chakraborty</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 14 Oct 2016 12:54:04 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,650597,650597#msg-650597</guid>
            <title>Convert stored procedure from Oracle to MySQL (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,650597,650597#msg-650597</link>
            <description><![CDATA[ Hi All,<br />
<br />
I want immediate help to convert below stored procedure from oracle to mysql migration project. please help me out.<br />
<br />
mostly the issue with how to achieve start with .... connect by and start with ...connect by prior.<br />
<br />
delimiter //<br />
create PROCEDURE SP_Recon_Limit(IN p_le_short_name varchar(4000),<br />
IN p_br_short_name varchar(4000) <br />
)<br />
BEGIN<br />
DECLARE v_txn_exists integer default 1;<br />
DECLARE v_parent_facility integer;<br />
DECLARE v_facility_nt facility_nt;<br />
DECLARE connect by<br />
declare c_facility cursor for<br />
select distinct a.ADV_FACI_ID,<br />
a.CURRENCY_ID,<br />
a.OBLIGOR_ID,<br />
a.ADV_FACI_AMOUNT,<br />
a.ADV_FACI_NAME,<br />
case (select 1 from m_obligor where obligor_id = a.obligor_id and reference_id like &#039;H%&#039;) when 1 then &#039;Y&#039; else &#039;N&#039; end as IS_DUMMY,<br />
(case when exists(select 1 from t_advance_facility where parent_advf_id = a.ADV_FACI_ID) then &#039;Y&#039; else &#039;N&#039; end) as IS_MULTIENTITY<br />
from t_advance_facility a<br />
where a.valid_flag = &#039;T&#039;<br />
and a.parent_advf_id is null<br />
and a.LEGAL_ENTITY_BRANCH_ID in (select sk_legal_entity_branch_id from r_legal_entity_branch<br />
where LEGAL_ENTITY_ID = (select sk_legal_entity_id from m_legal_entity where legal_entity_shortname = p_le_short_name)<br />
and BRANCH_ID = (select branch_id from m_branch where branch_shortname = p_br_short_name))<br />
and (a.ADV_FACI_STATUS in (6,21,16,26,27,30,43)<br />
or (a.ADV_FACI_STATUS in (9, 8, 11, 7, 24, 25) and a.ADV_FACI_AMOUNT &gt; 0)) prior<br />
a.adv_faci_id = a.parent_advf_id;	<br />
cursor c_sub_facility(f_id in number) is<br />
select ADV_FACI_ID,<br />
CURRENCY_ID,<br />
OBLIGOR_ID,<br />
ADV_FACI_AMOUNT,<br />
ADV_FACI_NAME<br />
from t_advance_facility<br />
where parent_advf_id = f_id;	<br />
begin<br />
delete from dbs_recon_limit;<br />
declare v_facility cursor for c_facility LOOP<br />
BEGIN<br />
SAVEPOINT start_transaction;<br />
select ADV_FACI_ID bulk collect into v_facility_nt from t_advance_facility<br />
start with ADV_FACI_ID = v_facility.ADV_FACI_ID<br />
connect by prior adv_faci_id = parent_advf_id;<br />
end SP_Recon_Limit;<br />
//<br />
delimiter;]]></description>
            <dc:creator>Anil Vidhani</dc:creator>
            <category>Oracle</category>
            <pubDate>Tue, 20 Sep 2016 08:23:39 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,648194,648194#msg-648194</guid>
            <title>Help convertin pl/sql to mysql (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,648194,648194#msg-648194</link>
            <description><![CDATA[ I am in need of converting the following pl/sql to mysql, and thought this community might be able to help.    Having<br />
a heck of time emulating in MySql.  It is the subtraction/addition of the interval statement with the julian part that<br />
I cannot figure out.    I will also, post in some MySql areas, and any insight appreciated.<br />
 <br />
trunc(to_number(to_char(sysdate,&#039;j&#039;))/7) - trunc(to_number(to_char(trunc(sysdate,&#039;yy&#039;) - interval &#039;3&#039; month, &#039;j&#039; ))/7) + 1 as sysdate_fiscal_week_offset1,<br />
trunc(to_number(to_char(sysdate,&#039;j&#039;))/7) - trunc(to_number(to_char(trunc(sysdate,&#039;yy&#039;) + interval &#039;9&#039; month, &#039;j&#039; ))/7) + 1 as sysdate_fiscal_week_offset2<br />
<br />
Thanks,<br />
Bob]]></description>
            <dc:creator>Bob Bell</dc:creator>
            <category>Oracle</category>
            <pubDate>Fri, 15 Jul 2016 15:51:31 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,645739,645739#msg-645739</guid>
            <title>Windows server 2012 IIS 8 php data post upload failure to mysql (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,645739,645739#msg-645739</link>
            <description><![CDATA[ Hello, I&#039;m getting a php data upload fail when attempting to transfer data up to a mysql database from a html5/webgl built app off of Unity. All of the data downloads work regardless of the upload issue. The upload issue happens after an indeterminable amount of time.<br />
<br />
The only error I&#039;m seeing anywhere is : <br />
A fatal alert was generated and sent to the remote endpoint. This may result in termination of the connection. The TLS protocol defined fatal error code is 10. The Windows SChannel error state is 1203. <br />
<br />
This is only happening when the server is booted up however. The server is an EC2 Amazon m4 large. No errors can be found for each attempt to post data to the mysql database. The downloads can be seen being pulled in the cpu usage and then upload fails afterwards.<br />
<br />
This has happened once before, there was a full mysql reinstall, base reload of the table/schema and the problem persisted. Wiped the VM, did an identical install, and everything worked great until the same problem suddenly happened.<br />
<br />
I&#039;m leaning towards some time out limit, blocking, or other that has occurred but have been unable to locate any issue.<br />
<br />
Any help is appreciated.]]></description>
            <dc:creator>james romine</dc:creator>
            <category>Oracle</category>
            <pubDate>Mon, 16 May 2016 05:37:23 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?61,643524,643524#msg-643524</guid>
            <title>Importing  .dmp database oracle (no replies)</title>
            <link>https://forums.mysql.com/read.php?61,643524,643524#msg-643524</link>
            <description><![CDATA[ Hi freinds,<br />
<br />
I have oracle databases (.dmp files) stored in my machine (not in a server).<br />
<br />
I installed Mysql (mysql-installer-community-5.7.9.0)<br />
<br />
I installed Navicate lite<br />
<br />
how can i process to import my .dmp files to mysql??and using what software<br />
<br />
I want a full process to find a solution<br />
<br />
Thks a lot]]></description>
            <dc:creator>Marouen Bali</dc:creator>
            <category>Oracle</category>
            <pubDate>Sun, 13 Mar 2016 08:49:25 +0000</pubDate>
        </item>
    </channel>
</rss>
