This is a read-only copy of the MariaDB Knowledgebase generated on 2024-11-17. For the latest, interactive version please visit https://mariadb.com/kb/.

database export

how can I export database in MariaDB to outside environment e.g. to text file or other format

Answer Answered by Daniel Black in this comment.

SELECT INTO OUTFILE for CSV/TSV like formats. mariadb-dump --xml is an XML format. Other formats can be achieved fairly easy with a programming language that can communicate to the database and generate the format easily.

Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.