with our secure online converter
Drag and drop your files here or click to upload.
You can specify multiple input files.
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
The API will return a ZIP archive of .CSV files, one for each table in the set of input files. The CSV files comply with our CSV specification.
The conversion process takes between 15 seconds and multiple minutes. It depends on the size of the database.
Already 2,000+ satisfied customers with over 700,000+ databases successfully converted.
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=csv database-files.. output-dir/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=csv&errorResponse=zip' -o output.zip The file output.zip will contain a CSV file, one for each table in the set of input files. If something went wrong, output.zip contains the error message.