Withdata Software

Producing high-quality database tools

Main menu

Skip to primary content
Skip to secondary content
  • Withdata
  • Blog
  • Categories
  • Tags
  • Tools

Post navigation

← Older posts
Newer posts →

Withdata Software Released AccessToMsSql Version 2.1

Posted on June 5, 2013 by Shiji Pan

Withdata software has announced accesstomssql 2.1, a data conversion tool that import Access data to ms SQL server. AccessToMsSql 2.1 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. AccessToMsSql, Better way to import Access ... Read more

Posted in AccessToMsSql | Tagged Access, AccessToMsSql, DB To DB, Sql Server

Withdata Software Released AccessToDB2 Version 2.1

Posted on June 5, 2013 by Shiji Pan

Withdata software has announced accesstodb2 2.1, a data conversion tool that import Access data to db2. AccessToDB2 2.1 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. AccessToDB2 – Better tool for importing Access data ... Read more

Posted in AccessToDB2 | Tagged Access, AccessToDB2, DB To DB, DB2

Replace (Update/Insert) a row into SQL Server table

Posted on June 4, 2013 by Shiji Pan

In MySQL,  we use “ON DUPLICATE KEY UPDATE” to either updates or inserts a row in a table. How to do it in SQL Server? Just like this: if not exists (select 1 from employees where employee_id = 1) insert into employees (employee_id,last_name,first_name) values ( 1,'smith', ... Read more

Posted in Sql Server | Tagged merge into, replace into, Sql Server, upsert

Replace (Update/Insert) a row into Oracle table – Merge into

Posted on June 4, 2013 by Shiji Pan

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 Oracle? Use “merge into” . MERGE INTO employees USING dual ON ( "id"=123456 ... Read more

Posted in Oracle | Tagged merge into, Oracle, replace into, upsert

For Feed Shark

Posted on June 2, 2013 by Shiji Pan

www.HyperSmash.com ... Read more

Posted in Uncategorized | Tagged Feed, Ping, Rss

Remove duplicate rows in MySQL

Posted on May 31, 2013 by Shiji Pan

The primary key: id, the unique columns:  col_1, col_2, col_3 . You can use a temporary table, like: create temporary table temp_table (id int); insert temp_table (id) select id from your_table t1 where exists ( select * from your_table t2 ... Read more

Posted in Mysql | Tagged Mysql, Remove duplicate rows

Remove duplicate rows in SQL Server

Posted on May 31, 2013 by Shiji Pan

Assuming no nulls, you GROUP BY the unique columns (eg. col_1, col_2, col_3), and SELECT the MIN (or MAX) Row ID (eg. row_id) as the row to keep. Then, delete everything that didn’t have a row id: DELETE my_table FROM my_table LEFT OUTER JOIN ( SELECT MIN(row_id) as row_id, col_1, ... Read more

Posted in Sql Server | Tagged Remove duplicate rows, Sql Server

About Oracle error “Cannot load OCI DLL”

Posted on May 30, 2013 by Shiji Pan

When you use Oracle tools that call Oracle client dll “oci.dll”, you may meet this error. [caption id="attachment_1847" align="alignnone" width="366"] Cannot load OCI DLL[/caption] When you use these Withdata ... Read more

Posted in Oracle | Tagged Cannot load OCI DLL, Oracle

Batch replace string in WordPress posts

Posted on May 30, 2013 by Shiji Pan

I want to change a link, from text link to image link, like: <a href=”abc.zip”>download</a> to <a href=”abc.zip”><img src=”/images/download.gif” alt=”download” /></a> And this link is not in one post, but some posts, it ... Read more

Posted in MyLobEditor | Tagged Batch Replace, WordPress

How to get column names from DB2 table

Posted on May 30, 2013 by Shiji Pan

SELECT colname, typename, length, scale, default FROM syscat.columns WHERE tabname = “<table name>” AND tabschema = “<schema name>” See also: How to get column names from Sql Server table How to get column names from Oracle table How to get column names from ... Read more

Posted in DB2 | Tagged DB2, get column names

Post navigation

← Older posts
Newer posts →

Recent Posts

  • TextMerger 1.0 Released: A Lightweight Cross-Platform Tool for Fast Text File Merging
  • FileToMongo 5.0 Released: Enhanced Stability, Speed & HTML Table Support
Withdata Software. ©2004 - 2026 All rights reserved.