# Data Export Tool Data Export Tool locates in [src/tools](https://github.com/4paradigm/OpenMLDB/tree/main/src/tools)。It supports exporting data from remote machines in standalone mode or cluster mode. ## 1. Build Generate the Unix Executable file:`make` under src folder. ## 2. Data Export Usage ### 2.1 Command Line Arguments All configurations are showed as follows, * indicates required configurations. ``` Usage: ./data_exporter [--delimiter=] --db_name= [--user_name=] --table_name= --config_path= * --db_name= openmldb database name * --table_name= openmldb table name of the selected database * --config_path= absolute or relative path of the config file --delimiter= delimiter for the output csv, default is ',' --user_name= user name of the remote machine ``` ### 2.2 Important Configurations Instructions Descriptions of the important configurations: - `--db_name=`: OpenMLDB database name. The database must exist, otherwise would return an error message: database not found. - `--table_name=`: table name. The table must exist in the selected database, otherwise would return an error message: table not found. - `--config_path=