OCommandExecutorNotFoundException on simple record copy
See original GitHub issueHi,
I am using Orient 2.0.5 and trying to make the copy example work. Here’s my command:
insert into User from ( select from Tenant where @rid = #12:0 )
This produces the following error:
Error: com.orientechnologies.orient.core.command.OCommandExecutorNotFoundException: Cannot find a command executor for the command request: sql.( select from Tenant where @rid = #12:0 )
Record #12:0
is in database. User class is a simple class without any properties defined or restricted (i.e. just a shell).
Issue Analytics
- State:
- Created 8 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Making a copy of record without edges - Stack Overflow
Is there a way to make a copy of an arbitrary OrientDB record ... OCommandExecutorNotFoundException: Cannot find a command executor for the ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @andreyvk
have you tried this?
insert into ActionLog return @this from select from Tenant where @rid = #12:0
Hi @luigidellaquila,
That works well actually. Thanks!