OrientDB – Drop Cluster The Drop Cluster command removes the cluster and all its related content. This operation is permanent and rollback. The following statement is the basic syntax of Drop Cluster command. DROP CLUSTER <cluster-name>|<cluster-id> Where <cluster-name> defines the name of the cluster you want to remove and <cluster-id> defines the ID of the […]
Author Archives: user
OrientDB – Alter Cluster Alter Cluster command is to update attributes on an existing cluster. In this chapter you can learn how to add or modify the attributes of a cluster. The following statement is the basic syntax of Alter Cluster command. ALTER CLUSTER <cluster> <attribute-name> <attribute-value> Following are the details about the options in […]
OrientDB – Create Property Property in OrientDB works like a field of class and column in the database table. Create Property is a command used to create a property for a particular class. The class name that you used in the command must exist. The following statement is the basic syntax of Create Property command. […]