WiredTiger includes a command line utility, wt.
wt [-Vv] [-C config] [-h directory] command [command-specific arguments]
The wt tool is a command-line utility that provides access to various pieces of the WiredTiger functionality.
There are three global options:
Unless otherwise described by a wt command, the wt tool exits zero on success and non-zero on error.
The wt tool supports several commands.
Create a table or file.
The create command creates the specified uri with the specified configuration. It is equivalent to a call to WT_SESSION::create with the specified string arguments.
wt [-Vv] [-C config] [-h directory] create [-c config] uri
The following are command-specific options for the create command:
Drop a table or file.
The drop command drops the specified uri. It is equivalent to a call to WT_SESSION::drop with the "force" configuration argument.
wt [-Vv] [-C config] [-h directory] drop uri
There are no command-specific options for the drop command.
Export data in a text format.
The dump command outputs the specified table in a portable format which can be re-loaded into a new table using the load command.
See Dump Formats for details of the dump file formats.
wt [-Vv] [-C config] [-h directory] dump [-rx] [-f output] uri
The following are command-specific options for the dump command:
dump command output is written to the standard output; the -f option re-directs the output to the specified file.Dump a file in a debugging format.
The dumpfile command dumps the specified physical file in a non-portable, debugging format, exiting success if the file is correct, and failure if the file is corrupted.
wt [-Vv] [-C config] [-h directory] dumpfile [-f output] file
The following are command-specific options for the dumpfile command:
dumpfile command output is written to the standard output; the -f option re-directs the output to the specified file.List the tables and files in the database.
The list command prints out the URIs for tables and files stored in the database.
wt [-Vv] [-C config] [-h directory] list
The list command has no command-specific options.
Rename a table or file.
The rename command renames the specified table or file.
wt [-Vv] [-C config] [-h directory] rename uri name
The rename command has no command-specific options.
Load a table or file from dump output.
The load command reads the standard input for data and loads it into a table or file, creating the table or file if it does not yet exist. The data should be the format produced by the dump command; see Dump Formats for details.
By default, if the table or file already exists, data in the file or table cannot be overwritten by the new data (use the -o option to overwrite existing data).
wt [-Vv] [-C config] [-h directory] load [-ao] [-f input] [-r name] [uri configuration ...]
The following are command-specific options for the load command:
-a option is specified, record number keys in the input are ignored and the data is appended to the object and assigned new record number keys. The -a option is only applicable when loading an object where the primary key is a record number.load command reads from the standard input; the -f option reads the input from the specified file.load command uses the table or file name taken from the input; the -r option renames the object.-o option causes the load command to overwrite already existing data.Additionally, uri and configuration pairs may be specified to the load command. Each of these pairs may be used to modify the configuration of an object in the table or file. For each of the pairs, the configuration string will be appended to the WT_SESSION::create call for the object matching the uri.
Load text into a table or file.
The loadtext command reads the standard input for text and loads it into a table or file. The input data should be printable characters, with newline delimiters for each key or value.
The loadtext command does not create the file if it does not yet exist.
In the case of inserting values into a column-store table or file, each value is appended to the table or file; in the case of inserting values into a row-store table or file, lines are handled in pairs, where the first line is the key and the second line is the value. If the row-store table or file already exists, data in the table or file will be overwritten by the new data.
wt [-Vv] [-C config] [-h directory] loadtext [-f input]
The following are command-specific options for the loadtext command:
loadtext command reads from the standard input; the -f option reads the input from the specified file.Display the database log.
The printlog command outputs the database log.
wt [-Vv] [-C config] [-h directory] printlog [-p] [-f output]
The following are command-specific options for the printlog command:
printlog command output is written to the standard output; the -f option re-directs the output to the specified file.Read records from a table or file.
The read command prints out the records associated with the specified keys from the specified object.
The object must be configured with string or record number keys and string values.
The read command exits non-zero if a specified record is not found.
wt [-Vv] [-C config] [-h directory] read uri key ...
The read command has no command-specific options.
Recover data from a corrupted file.
The salvage command salvages the specified object, discarding any data that cannot be recovered. Underlying files are re-written in place, overwriting the original file contents.
wt [-Vv] [-C config] [-h directory] salvage [-F force] uri
The following are command-specific options for the salvage command:
-F option forces the salvage of the file, regardless.Display database or object statistics.
The stat command outputs run-time statistics for the WiredTiger engine, or, if specified, for the command-line object.
wt [-Vv] [-C config] [-h directory] stat [uri]
The stat command has no command-specific options.
Upgrade a table or file.
The upgrade command upgrades the specified table or file, exiting success if the object up-to-date, and failure if the object cannot be upgraded.
wt [-Vv] [-C config] [-h directory] upgrade uri
The upgrade command has no command-specific options.
Check the structural integrity of a table or file.
The verify command verifies the specified table or file, exiting success if the object is correct, and failure if the object is corrupted.
wt [-Vv] [-C config] [-h directory] verify uri
The verify command has no command-specific options.
Write records to a table or file.
The write command stores records into the specified object.
The object must be configured with string or record number keys and string values.
If the write command is called with the -a option, each command-line argument is a single value to be appended to the specified column-store object. If the write command is not called with the -a option, the command-line arguments are key/value pairs.
Attempting to overwrite an already existing record will fail.
wt [-Vv] [-C config] [-h directory] write -a uri value ...
wt [-Vv] [-C config] [-h directory] write [-o] uri key value ...
The following are command-specific options for the write command:
-o option changes write to overwrite previously existing records.