Convert from Oracle VARCHAR2 to MySQL TEXT -
How to correctly correct MySQL text types of data from Oracle VARCHAR2? I want to include it in the MySQL table in the field with the TEXT type via DSPL.
Something could work like I was not sure how you are going, but Oracle Package DBMS_blob will replace varchar2 in various blog, lob, clob formats.
You may have to use a temporary table to drag the source data to target the target if there are problems with the database link. Insert
into database.target_table@DBLINK (text1, text2) dbms_lob.substr (s.text1, 4000, 1), dbms_lob.substr (s .text2, 4000, 1) From Source_table;
Comments
Post a Comment