Withdata software has announced withdata oracletoexcel 1.8, a data conversion tool that export Oracle data to excel. Withdata OracleToExcel 1.8 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. Withdata ... Read more
Withdata Software Released Withdata MysqlToExcel 1.8
Withdata software has announced withdata mysqltoexcel 1.8, a data conversion tool that export MySQL data to excel. Withdata MysqlToExcel 1.8 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. Withdata ... Read more
Withdata Software Released Withdata MsSqlToExcel 1.8
Withdata software has announced withdata mssqltoexcel 1.8, a data conversion tool that export ms SQL Server data to excel. Withdata MsSqlToExcel 1.8 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. Withdata ... Read more
Withdata Software Released Withdata DB2ToExcel 1.9
Withdata software has announced withdata db2toexcel 1.9, a data conversion tool that export DB2 data to excel. Withdata DB2ToExcel 1.9 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. Withdata DB2ToExcel ... Read more
Withdata Software Released Withdata AccessToExcel 1.9
Withdata software has announced withdata accesstoexcel 1.9, a data conversion tool that export Access data to excel. Withdata AccessToExcel 1.9 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. Withdata ... Read more
Withdata Software Released SqlToTxt Version 2.4
Withdata software has announced sqltotxt 2.4, a data conversion tool that export SQL Server data to flat file (csv, xml, html, sql) and excel. SqlToTxt 2.4 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql ... Read more
Withdata Software Released MyToTxt Version 2.1
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
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