incremental migration, select query, data filter, database, automate conversion, server, format, shareware
FAQ  |  Site map  |  Contact Us
Home About Us Download How to Buy Discounts Migration Service Support Affiliate Program
PRODUCTS

Access to MySQL

Access to Oracle

DBF to MySQL

Excel to MySQL

Excel to Oracle

MSSQL to MySQL

MSSQL to Oracle

MySQL Migration Toolkit

MySQL to Access

MySQL to Excel

MySQL to MSSQL

MySQL to Oracle

Oracle Migration Toolkit

Oracle to MySQL

OraDump Export API

OraDump Export Kit

OraDump to Access

OraDump to CSV

OraDump to Excel

OraDump to MSSQL

OraDump to MySQL

PDF to Excel

PDF to Word

PDF to XML

PDF-to-Word API

PDF Export Kit

More...



Filtering data during the conversion

It is very common situation when you do not need to migrate the entire table to another database format but just a part of it. Intelligent Converters offers smart and flexible solution for such situations. Now our products allow users to filter data via SQL SELECT-queries. With this feature, you can select particular columns or data subset or simply rename columns in the resulting table. Below there are some examples of using queries for different purposes. Assume that we have MySQL table "Table1" defined as below:

   Table1(
	ID INT NOT NULL AUTO_INCREMENT, 
	FName VARCHAR(50),
	LName VARCHAR(50), 
	Birthday DATE, 
	Notes TEXT
   );

Example 1. Convert certain records.

SELECT * FROM Table1 WHERE ID > 1000

Example 2. Select and rename certain columns.

SELECT FName as FirstName, LName as LastName FROM Table1

Example 3. Skip records containing NULL values.

SELECT * FROM Table1 WHERE Notes IS NOT NULL

As you can see, SELECT-query filter is a powerful feature that allows you to precisely control the data for converting. With this feature it is so easy to arrange incremental conversion and migrate exact data you wish. It would be definitely useful for daily backup tasks and similar procedures requiring partial data migration.