有没有办法删除我在orientdb中不安全删除的所有悬挂引用?
我在orientdb中输入了drop class MyEdge unsafe
,但是没有删除对其他顶点的边缘的引用。
知道我应该用什么来删除边缘及其引用的正确命令?
我正在使用orientdb 2.1.19
谢谢
答案 0 :(得分:1)
从OrientDB 2.2.x开始,引入了命令CHECK DATABASE
,如果数据库包含图形,则检查它们的一致性。要修复数据库,请使用REPAIR DATABASE
命令。
有关CHECK DATABASE
:https://orientdb.com/docs/last/Console-Command-Check-Database.html
有关REPAIR DATABASE
:https://orientdb.com/docs/last/Console-Command-Repair-Database.html
希望有所帮助
此致