Commands
This page lists all commands that are supported by BaseX.
Commands can be run from the Command Line,
the Clients, JAX-RX, the input field in the GUI, or
some other ways. If the GUI is used, all commands that are triggered by the GUI itself
will show up in the Info View.
The Permission fields indicate which
rights are required by a user to perform a command in the client/server architecture.
A shortcut exists for some of the command keywords. For example, you may replace
the DATABASE keyword with DB.
A preview page contains all commands offered by the latest stable snapshot.
Contents
- 1 Glob Syntax
- 2 Commands
- 2.1 ADD
- 2.2 ALTER DATABASE
- 2.3 ALTER USER
- 2.4 CHECK
- 2.5 CLOSE
- 2.6 COPY
- 2.7 CREATE BACKUP
- 2.8 CREATE DATABASE
- 2.9 CREATE INDEX
- 2.10 CREATE EVENT
- 2.11 CREATE USER
- 2.12 CS
- 2.13 DELETE
- 2.14 DROP BACKUP
- 2.15 DROP DATABASE
- 2.16 DROP EVENT
- 2.17 DROP INDEX
- 2.18 DROP USER
- 2.19 EXIT
- 2.20 EXPORT
- 2.21 FIND
- 2.22 GET
- 2.23 GRANT
- 2.24 HELP
- 2.25 INFO
- 2.26 INFO DATABASE
- 2.27 INFO INDEX
- 2.28 INFO STORAGE
- 2.29 KILL
- 2.30 LIST
- 2.31 OPEN
- 2.32 OPTIMIZE
- 2.33 PASSWORD
- 2.34 RENAME
- 2.35 REPLACE
- 2.36 REPO DELETE
- 2.37 REPO INSTALL
- 2.38 REPO LIST
- 2.39 RESTORE
- 2.40 RUN
- 2.41 SET
- 2.42 SHOW BACKUPS
- 2.43 SHOW DATABASES
- 2.44 SHOW SESSIONS
- 2.45 SHOW EVENTS
- 2.46 SHOW USERS
- 2.47 XQUERY
Glob Syntax
For some commands, the glob syntax can be used to address more than one database or user. Question marks and asterisks can be used to match one or more characters, and commas can be used to separate multiple patterns. Some examples:
AB?addresses all names with the charactersABand one more character.*ABaddresses all names ending with the charactersAB.X*,Y*,Z*addresses all names starting with the charactersX,Y, orZ.
Commands
ADD
| Signature | ADD (AS [name]) (TO [target]) [input]
|
| Permission | WRITE |
| Summary | Adds the files, directory or XML string specified by [input] to the currently opened database, using an optional [target] path and an optional file [name].The input may either be a single XML document, a directory, a remote URL or a plain XML string. The optional name is ignored if the input is a directory. |
| Errors | The command fails if no database is opened, if one of the documents to be added is not well-formed, or if it could not be parsed for some other reason. |
| Examples |
|
ALTER DATABASE
| Signature | ALTER DATABASE [name] [newname]
|
| Permission | CREATE |
| Summary | Renames the database specified by [name] to [newname].
|
| Errors | The command fails if the target database already exists, if the source database does not exist or is currently locked, or if it could not be renamed for some other reason. |
| Examples |
|
ALTER USER
| Signature | ALTER USER [name] ([password])
|
| Permission | ADMIN |
| Summary | Alters the [password] of the user specified by [name]. If no password is specified in the console mode, it is requested via standard input.
|
| Errors | The command fails if the specified user does not exist, or if no password has been specified. |
CHECK
| Signature | CHECK [input]
|
| Permission | CREATE |
| Summary | Opens an existing database for the specified [input] or creates a new instance.
|
| Errors | The command fails if the database could beither be opened nor created. |
CLOSE
| Signature | CLOSE
|
| Permission | NONE |
| Summary | Closes the currently opened database. |
| Errors | The command fails if the database files could not be closed for some unknown reason. |
COPY
| Signature | COPY [name] [newname]
|
| Permission | CREATE |
| Summary | Creates a copy of the database specified by [name].
|
| Errors | The command fails if the target database already exists, or if the source database does not exist. |
CREATE BACKUP
| Signature | CREATE BACKUP [name]
|
| Permission | CREATE |
| Summary | Creates a zipped backup of the specified database. The backup file will be suffixed with the current timestamp and stored in the database directory. The Glob syntax can be used to address more than one database. |
| Errors | The command fails if the specified database does not exist, or if it could not be zipped for some other reason. |
| Examples |
|
CREATE DATABASE
| Signature | CREATE DATABASE [name] ([input])
|
| Permission | CREATE |
| Summary | Creates the database [name] with an optional [input].The input may either be a single XML document, a directory, a remote URL or a plain XML string. |
| Errors | The command fails if a database with the specified name is currently used by another process, or if one of the documents to be added is not well-formed or could not be parsed for some other reason. |
| Examples |
|
CREATE INDEX
| Signature | CREATE INDEX [TEXT|ATTRIBUTE|FULLTEXT|PATH]
|
| Permission | WRITE |
| Summary | Creates the specified database index. |
| Errors | The command fails if no database is opened, if the specified index is unknown, or if indexing fails for some other reason. |
CREATE EVENT
| Signature | CREATE EVENT [NAME]
|
| Permission | ADMIN |
| Summary | Creates the specified event. |
| Errors | The command fails if event already exists. |
CREATE USER
| Signature | CREATE USER [name] ([password]):
|
| Permission | ADMIN |
| Summary | Creates a user with the specified [name] and [password]. If no password is specified in the console mode, it is requested via standard input.
|
| Errors | The command fails if the specified user already exists, or if no password has been specified. |
CS
| Signature | CS [query]
|
| Permission | depends on query |
| Summary | Evaluates the specified [query] and sets the result as new context set.
|
| Errors | The command fails if no database is opened, if the specified query is invalid or if it does not return nodes of the currently opened database. |
DELETE
| Signature | DELETE [path]
|
| Permission | WRITE |
| Summary | Deletes all documents from the currently opened database that start with the specified [path].
|
| Errors | The command fails if no database is opened. |
DROP BACKUP
| Signature | DROP BACKUP [name]
|
| Permission | CREATE |
| Summary | Drops all backups of the database with the specified [name]. The Glob syntax can be used to address more than one database.
|
| Examples |
|
DROP DATABASE
| Signature | DROP DATABASE [name]
|
| Permission | CREATE |
| Summary | Drops the database with the specified [name]. The Glob syntax can be used to address more than one database.
|
| Errors | The command fails if the specified database does not exist or is currently locked, or if the database could not be deleted for some other reason. |
DROP EVENT
| Signature | DROP EVENT [NAME]
|
| Permission | ADMIN |
| Summary | Drops the specified event. |
| Errors | The command fails if the event doesn't exist. |
DROP INDEX
| Signature | DROP INDEX [PATH|TEXT|ATTRIBUTE|FULLTEXT]
|
| Permission | WRITE |
| Summary | Drops the specified database index. |
| Errors | The command fails if no database is opened, if the specified index is unknown, or if it could not be deleted for some other reason. |
DROP USER
| Signature | DROP USER [name] (ON [database]):
|
| Permission | ADMIN |
| Summary | Drops the user with the specified [name]. If a [database] is specified, the user is only dropped locally. The Glob syntax can be used to address more than one database or user.
|
| Errors | The command fails if admin is specified as user name, if the specified user does not exist or is logged in, or if the optional database could not be opened for modification.
|
EXIT
| Signature | EXIT
|
| Permission | NONE |
| Summary | Exits the console mode. |
EXPORT
| Signature | EXPORT [path]
|
| Permission | CREATE |
| Summary | Exports all documents in the database to the specified [path], using the serializer options specified by the EXPORTER option.
|
| Errors | The command fails if no database is opened, if the target path points to a file or is invalid, if the serialization parameters, or if the documents cannot be serialized for some other reason. |
FIND
| Signature | FIND [keywords]
|
| Permission | READ |
| Summary | Builds and runs a query for the specified [keywords]. The following modifiers can be used to further limit search:
|
| Errors | The command fails if no database is opened. |
GET
| Signature | GET [option]
|
| Permission | READ |
| Summary | Returns the value of the specified [option]. A list of all options is available here.
|
| Errors | The command fails if the specified option is unknown. |
GRANT
| Signature | GRANT [NONE|READ|WRITE|CREATE|ADMIN] (ON [database]) TO [user]
|
| Permission | ADMIN |
| Summary | Grants the specified permission to the specified [user]. If a [database] is specified, the permissions are only granted locally. The Glob syntax can be used to address more than one database or user.
|
| Errors | The command fails if admin is specified as user name, if the specified user does not exist, or if the optional database could not be opened for modification.
|
| Examples |
|
HELP
| Signature | HELP ([command])
|
| Permission | NONE |
| Summary | If [command] is specified, information on the specific command is printed; otherwise, all commands are listed.
|
| Errors | The command fails if the specified command is unknown. |
INFO
| Signature | INFO
|
| Permission | READ |
| Summary | Shows global information. |
INFO DATABASE
| Signature | INFO DATABASE
|
| Permission | READ |
| Summary | Shows information on the currently opened database. |
| Errors | The command fails if no database is opened. |
INFO INDEX
| Signature | INFO INDEX ([TEXT|ATTRIBUTE|FULLTEXT|PATH])
|
| Permission | READ |
| Summary | Shows information on the existing index structures. The output can be optionally limited to the specified index. |
| Errors | The command fails if no database is opened, or if the specified index is unknown. |
INFO STORAGE
| Signature | INFO STORAGE [start end] | [query]
|
| Permission | READ |
| Summary | Shows the internal main table of the currently opened database. An integer range or a query may be specified as argument. |
| Errors | The command fails if no database is opened, or if one of the specified arguments is invalid. |
KILL
| Signature | KILL [name]
|
| Permission | ADMIN |
| Summary | Kills all sessions of the user specified by [name]. The Glob syntax can be used to address more than one user.
|
| Errors | The command fails if admin is specified as user name, or if a user tries to kill his own sessions.
|
LIST
| Signature | LIST ([path])
|
| Permission | NONE |
| Summary | Lists all available databases, or the documents in a database. [path] is the name of the database, optionally followed by a path to the requested documents.
|
| Errors | The command fails if the optional database cannot be opened, or if the existing databases cannot be listed for some other reason. |
OPEN
| Signature | OPEN [path]
|
| Permission | READ |
| Summary | Opens the documents in a database. [path] is the name of the database, optionally followed by a path to the requested documents.
|
| Errors | The command fails if the specified database cannot be opened for some unknown reason. |
OPTIMIZE
| Signature | OPTIMIZE (ALL)
|
| Permission | WRITE |
| Summary | Optimizes the current database structures. If the ALL flag is specified, the size of all database files is minimized.
|
| Errors | The command fails if no database is opened, or if the currently opened database is a main-memory instance. |
PASSWORD
| Signature | PASSWORD ([password])
|
| Permission | NONE |
| Summary | Changes the [password] of the current user. If no password is specified in the console mode, it is requested via standard input.
|
| Errors | The command fails if no password has been specified. |
RENAME
| Signature | RENAME [path] [newpath]
|
| Permission | WRITE |
| Summary | Renames all document paths in the currently opened database that start with the specified [path]. The command may be used to either rename single documents or directories.
|
| Errors | The command fails if no database is opened, or if the target path is empty. |
| Examples |
|
REPLACE
| Signature | REPLACE [path] [input]
|
| Permission | WRITE |
| Summary | Replaces the documents in the currently opened database, addressed by [path], with the file or XML string specified by [input]. The original file name and path is preserved by the operation.
|
| Errors | The command fails if no database is opened, if the specified path points to a database directory, or if the input is not found. |
| Examples |
|
REPO DELETE
| Signature | REPO DELETE [name|dir]
|
| Permission | ADMIN |
| Summary | Deletes the package with name [name] or with directory [dir].
|
| Errors | The command fails if the package to be deleted participates in a dependency. |
REPO INSTALL
| Signature | REPO INSTALL [path]
|
| Permission | ADMIN |
| Summary | Installs the package with path [path].
|
| Errors | The command fails in the following cases:
|
REPO LIST
| Signature | REPO LIST
|
| Permission | ADMIN |
| Summary | Lists all installed packages. |
RESTORE
| Signature | RESTORE [name]
|
| Permission | CREATE |
| Summary | Restores a database with the specified [name]. The name may include the timestamp of the backup file.
|
| Errors | The command fails if the specified backup does not exist, if the database to be restored is currently locked, or if it could not be restored for some other reason. |
RUN
| Signature | RUN [file]
|
| Permission | depends on query |
| Summary | Runs the query contained in [file] and prints the result.
|
| Errors | The command fails if the specified file does not exist, or if the retrieved query is invalid. |
SET
| Signature | SET [option] ([value])
|
| Permission | READ |
| Summary | Sets an [option] to the specified [value]. A list of all options is available here.
|
| Errors | The command fails if the specified option is unknown or if the specified value is invalid. |
SHOW BACKUPS
| Signature | SHOW BACKUPS
|
| Permission | CREATE |
| Summary | Shows all database backups. |
SHOW DATABASES
| Signature | SHOW DATABASES
|
| Permission | ADMIN |
| Summary | Shows all databases that are opened in the current server instance. |
SHOW SESSIONS
| Signature | SHOW SESSIONS
|
| Permission | ADMIN |
| Summary | Shows all sessions that are connected to the current server instance. |
SHOW EVENTS
| Signature | SHOW EVENTS
|
| Permission | ADMIN |
| Summary | Shows all events that have been registered in the database. |
SHOW USERS
| Signature | SHOW USERS (ON [database])
|
| Permission | ADMIN |
| Summary | Shows all users that are registered in the database. If a [database] is specified, local users are shown.
|
| Errors | The command fails if the optional database could not be opened. |
XQUERY
| Signature | XQUERY [query]
|
| Permission | depends on query |
| Summary | Runs the specified [query] and prints the result.
|
| Errors | The command fails if the specified query is invalid. |
| Examples |
|