无法创建字符串属性,我怎么知道哪些记录有问题?

时间:2016-04-14 12:26:54

标签: orientdb orientdb-2.1

我试图通过以下方式创建属性:

CREATE PROPERTY Entity.entity_name STRING

我收到以下错误:

  

数据库包含属性中的一些无模式数据   ' Entity.entity_name'与STRING类型不兼容。固定   那些记录并再次更改架构

我如何知道哪些记录存在问题?我有超过300,000条记录

1 个答案:

答案 0 :(得分:2)

您可以使用此查询

select @rid from Entity where entity_name.type() <> "STRING limit -1"

示例:

我创建了这些记录

enter image description here

enter image description here

enter image description here