Convert .yxdb Files for Import
Alteryx writes .yxdb files in two formats. The classic format (written by the original engine) is well understood, and PlaidCloud imports it directly. The AMP engine writes a newer variant — the file header reads Alteryx e2 Database file — whose specification is proprietary and unpublished, so no tool outside Alteryx can read it, including PlaidCloud.
During a migration you still have licensed Alteryx Designer, and Designer reads both formats. Use it once, before you decommission it, to rewrite AMP-format files into something portable.
Identify AMP-Format Files
Section titled “Identify AMP-Format Files”- The workflow that produced the file ran with the AMP engine enabled.
- PlaidCloud reports the file as unreadable during import, while other
.yxdbfiles from the same package import fine. - The first bytes of the file read
Alteryx e2 Database fileinstead ofAlteryx Database File(visible in any text or hex editor).
Option A: Re-Save Files Individually in Designer
Section titled “Option A: Re-Save Files Individually in Designer”For a handful of files, re-save each one from Designer:
- In Alteryx Designer, add an Input Data tool and select the
.yxdbfile. - Connect an Output Data tool and choose a new
.yxdbpath. - In the Output Data tool’s options, enable the option to save the file compatible with Designer 18.1 and older. This forces the classic format.
- Run the workflow, then import the new file into PlaidCloud.
Writing to CSV instead of .yxdb in step 2 also works and skips the compatibility option.
Option B: Batch-Convert a Folder with the Downloadable Workflow
Section titled “Option B: Batch-Convert a Folder with the Downloadable Workflow”For many files, download the prebuilt workflow and run it in Designer:
Download convert_yxdb_folder.yxmdIt chains a Directory tool, a Dynamic Input tool, and an Output Data tool so that every .yxdb in a folder — classic or AMP — is rewritten as a CSV file named converted_<original name>.csv. CSV is portable and PlaidCloud imports it losslessly.
- Open
convert_yxdb_folder.yxmdin Alteryx Designer. - In the Directory tool, set the folder that holds your
.yxdbfiles. - In the Dynamic Input tool, point the Input Data Source Template at any one
.yxdbfile in that folder. - In the Output Data tool, set the output folder.
- Run the workflow, then upload the CSVs to Document and import them.
Files converted to CSV lose .yxdb-specific typing (everything arrives as text and is re-typed on import), so spot-check imported tables for column types — especially dates and high-precision decimals.