OrientDB – Alter Database Database is a one of the important data models with different attributes that you can modify as per your requirements. The following statement is the basic syntax of the Alter Database command. ALTER DATABASE <attribute-name> <attribute-value> Where <attribute-name> defines the attribute that you want to modify and <attribute-value> defines the value […]
Category Archives: orientdb
OrientDB – Restore Database As like RDBMS, OrientDB also supports restoring operation. Only from the console mode, you can execute this operation successfully. The following statement is the basic syntax for restoring operation. orientdb> RESTORE DATABSE <url of the backup zip file> Example You have to perform this operation only from the console mode. Therefore, […]
OrientDB – Create Database The SQL Reference of the OrientDB database provides several commands to create, alter, and drop databases. The following statement is a basic syntax of Create Database command. CREATE DATABASE <database-url> [<user> <password> <storage-type> [<db-type>]] Following are the details about the options in the above syntax. <database-url> − Defines the URL of […]