Convert Paradox to MariaDB online

Add file

Input file

Please upload the files of your Paradox database directory. The file extensions are: .DB (for table), .PX (for primary index), .MB (for memos), .VAL (for validation), .TV (for formatting) and others.

Max file size for web uploads: 50 GB

Output file

The API will return a ZIP archive that contains a .SQL file. This .SQL is a MariaDB dump file and can be restored into your MariaDB installation.

Conversion methods

Using our Java tool

Download the RebaseData client Java tool . To convert your database using RebaseData, run the following command:

                    java -jar client-0.0.5.jar convert --output-format=mariadb database-files.. output-dir/
                
Using CURL

Let's imagine we want to convert the EMPLOYEE table of the paradoxReader's sample files. We would have to upload all files starting with "EMPLOYEE", namely EMPLOYEE.DB, EMPLOYEE.F10, EMPLOYEE.PX and EMPLOYEE.VAL. The curl command would look like this:

curl -F 'files[]=@EMPLOYEE.DB' -F 'files[]=@EMPLOYEE.F10' -F 'files[]=@EMPLOYEE.PX' -F 'files[]=@EMPLOYEE.VAL' 'https://www.rebasedata.com/api/v1/convert?outputFormat=mariadb&errorResponse=zip' -o output.zip
The file output.zip will contain a MariaDB file, one for each table in the set of input files. If something went wrong, output.zip contains the error message.

Options

How long does it take?

The conversion process takes between 15 seconds and multiple minutes. It depends on the size of the database.

You can also use your favourite tool

Why use RebaseData?

Terms