OrientDB – Truncate Record Truncate Record command is used to delete the values of a particular record. The following statement is the basic syntax of the Truncate command. TRUNCATE RECORD <rid>* Where <rid>* indicates the Record ID to truncate. You can use multiple Rids separated by comma to truncate multiple records. It returns the number […]
Author Archives: user
OrientDB – Reload Record Reload Record also works similar to Load Record command and is also used to load a particular record from the schema. Load record will load the record with the help of Record ID. It is represented with @rid symbol in the result-set. The main difference is Reload record ignores the cache […]
OrientDB – Load Record Load Record is used to load a particular record from the schema. Load record will load the record with the help of Record ID. It is represented with @rid symbol in the resultset. The following statement is the basic syntax of the LOAD Record command. LOAD RECORD <record-id> Where <record-id> defines […]