Working with Databases

Database Methods

The following methods are available to manage databases via JavaScript.Please note that several of these methods can be used from the _systemdatabase only.

Name

return the database namedb._name()

Returns the name of the current database as a string.

Examples

  1. arangosh> require("@arangodb").db._name();

Show execution results

  1. _system

Hide execution results

ID

return the database iddb._id()

Returns the id of the current database as a string.

Examples

  1. arangosh> require("@arangodb").db._id();

Show execution results

  1. 1

Hide execution results

Path

return the path to database filesdb._path()

Returns the filesystem path of the current database as a string.

Examples

  1. arangosh> require("@arangodb").db._path();

Show execution results

  1. /tmp/arangosh_eIJLPK/tmp-67-564247407/rocksdb/data

Hide execution results

isSystem

return the database typedb._isSystem()

Returns whether the currently used database is the system_ database.The system database has some special privileges and properties, for example,database management operations such as create or drop can only be executedfrom within this database. Additionally, the system_ database itselfcannot be dropped.

Use Database

change the current databasedb._useDatabase(name)

Changes the current database to the database specified by name. Notethat the database specified by name must already exist.

Changing the database might be disallowed in some contexts, for exampleserver-side actions (including Foxx).

When performing this command from arangosh, the current credentials (usernameand password) will be re-used. These credentials might not be valid toconnect to the database specified by name. Additionally, the databaseonly be accessed from certain endpoints only. In this case, switching thedatabase might not work, and the connection / session should be closed andrestarted with different username and password credentials and/orendpoint data.

List Databases

return the list of all existing databasesdb._databases()

Returns the list of all databases. This method can only be used from withinthe _system database.

Create Database

create a new databasedb._createDatabase(name, options, users)

Creates a new database with the name specified by name.There are restrictions for database names(see DatabaseNames).

Note that even if the database is created successfully, there will be nochange into the current database to the new database. Changing the currentdatabase must explicitly be requested by using thedb._useDatabase method.

The options attribute currently has no meaning and is reserved forfuture use.

The optional users attribute can be used to create initial users forthe new database. If specified, it must be a list of user objects. Each userobject can contain the following attributes:

  • username: the user name as a string. This attribute is mandatory.
  • passwd: the user password as a string. If not specified, then it defaultsto an empty string.
  • active: a boolean flag indicating whether the user account should beactive or not. The default value is true.
  • extra: an optional JSON object with extra user information. The datacontained in extra will be stored for the user but not be interpretedfurther by ArangoDB.If no initial users are specified, a default user root will be createdwith an empty string password. This ensures that the new database will beaccessible via HTTP after it is created.

You can create users in a database if no initial user is specified. Switchinto the new database (username and password must be identical to the currentsession) and add or modify users with the following commands.

  1. require("@arangodb/users").save(username, password, true);
  2. require("@arangodb/users").update(username, password, true);
  3. require("@arangodb/users").remove(username);

Alternatively, you can specify user data directly. For example:

  1. db._createDatabase("newDB", {}, [{ username: "newUser", passwd: "123456", active: true}])

Those methods can only be used from within the _system database.

Drop Database

drop an existing databasedb._dropDatabase(name)

Drops the database specified by name. The database specified byname must exist.

Note: Dropping databases is only possible from within the system_database. The system_ database itself cannot be dropped.

Databases are dropped asynchronously, and will be physically removed ifall clients have disconnected and references have been garbage-collected.

Engine

retrieve the storage engine type used by the serverdb._engine()

Returns the name of the storage engine in use (mmfiles or rocksdb), as wellas a list of supported features (types of indexes anddfdb).

Engine statistics

retrieve statistics related to the storage engine (rocksdb)db._engineStats()

Returns some statistics related to the storage engine activity, including figuresabout data size, cache usage, etc.

Note: Currently this only produces useful output for the RocksDB engine.