Withdata software has announced mytotxt 2.1, a data conversion tool that export MySQL data to flat file (csv, xml, html, sql) and excel. MyToTxt 2.1 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. MyToTxt ... Read more
Author Archives: Shiji Pan
Withdata Software Released DB2ToTxt Version 1.9
Withdata software has announced db2totxt 1.9, a data conversion tool that export DB2 data to flat file (csv, xml, html, sql) and excel. DB2ToTxt 1.9 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. DB2ToTxt ... Read more
Withdata Software Released AccessToFile Version 2.2
Withdata software has announced accesstofile 2.2, a data conversion tool that export Access data to flat file (csv, xml, html, sql) and excel. AccessToFile 2.2 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql ... Read more
Remove duplicate rows in Oracle
How to delete all duplicate rows and leave only one of them, in Oracle? DELETE FROM my_table WHERE rowid not in (SELECT MIN(rowid) FROM my_table GROUP BY column1, column2, column3...) ; Where column1, column2, etc. is the key you want to use. Relative links: Remove duplicate rows in ... Read more
Replace (Update/Insert) a row into DB2 table – Merge into
In MySQL, if you want to either updates or inserts a row in a table, depending if the table already has a row that matches the data, you can use “ON DUPLICATE KEY UPDATE”. How to do it in DB2? Use “merge into” . MERGE INTO table_to_upsert AS tab USING (VALUES ... Read more
Withdata Software Released OraLoader Version 4.3
Withdata software has announced oraloader 4.3, a data conversion tool that helps dba and database developer import/export Oracle database from/to flat files and Excel files. OraLoader 4.3 add “Execute Sql from Command line”, add “Match filter (wildcard)” to “Import ... Read more
Withdata Software Released OracleToMysql Version 1.2
Withdata software has announced oracletomysql 1.2, a data conversion tool that convert Oracle data to MySQL database. Version 1.2 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. OracleToMysql – convert Oracle data to ... Read more
Withdata Software Released OracleToMsSql Version 1.2
Withdata software has announced oracletomssql 1.2, a data conversion tool that convert Oracle data to SQL Server database. Version 1.2 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. OracleToMsSql – convert Oracle data ... Read more
Withdata Software Released OracleToDB2 Version 1.2
Withdata software has announced oracletodb2 1.2, a data conversion tool that convert Oracle data to DB2 database. Version 1.2 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. OracleToDB2 – convert Oracle data to ... Read more
Withdata Software Released OracleToAccess Version 2.1
Withdata software has announced oracletoaccess 2.1, a data conversion tool that export Oracle data to access. OracleToAccess 2.1 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. OracleToAccess – Better tool for to export ... Read more