# Hasura: "hasura seed create" fails on UBI image , pg_dump: undefined symbol: PQmblenBounded
## What's going on
On hasura/graphql-engine v2.49.3 UBI images (e.g. v2.49.3-ce.cli-migrations-v3.ubi), running hasura seed create --from-table ... failed with: exporting seed data: pg_dump request: 500 ... "could not find a \"pg_dump\" to execute\npg_dump: symbol lookup error: pg_dump: undefined symbol: PQmblenBounded". The identical command worked on the .ubuntu image variant.
## The verified fix
This was a broken UBI image build , pg_dump shipped linked against a libpq missing PQmblenBounded. The fix was released in v2.49.5 (maintainer hgiasac confirmed). Upgrade the server image to v2.49.5 or later; as an immediate workaround, switch the server image tag from .ubi to the .ubuntu variant, which was never affected. Source: https://github.com/hasura/graphql-engine/issues/10854
## How to use this
Take the question above and check if it matches what you're seeing. If it does, work through the verified fix step by step. Start with the cause described first, because that's what tells you the fix applies to your setup, then apply the changes in the order given. Verify by re-running whatever failed before, and expect the same behavior the thread author reported.