ODatabaseException OrientDB Record Error - orientdb

I'm struggling to fix my orientdb database. I'm getting the error:
Error: com.orientechnologies.orient.core.exception.ODatabaseException: Error on retrieving record #58:65894 (cluster: cluster_name_here)
I'm running REPAIR DATABASE --fix-graph and that's when i get this error. Is there any other suggestions in approaching this? This is also the case when running CHECK DATABASE
I tried using this link as a resource: https://orientdb.com/docs/last/Console-Command-Repair-Database.html

Related

Unable to connect to OrientDB - "Error in database URL: the engine was not specified"

Trying to connect to a new OrientDB (v3.2.15) database in Docker:
connect env remote:localhost root root;
create database apples plocal;
But am getting:
Error: com.orientechnologies.orient.core.exception.OConfigurationException: Error in database URL: the engine was not specified. Syntax is: <engine>:<db-type>:<db-name>[?<db-param>=<db-value>[&]]*. URL was: apples
Looking at the source code I can see : is required, or it'll through an exception - but the documentation says the opposite and my commands look correct.
Any ideas what I'm doing wrong, please?

Command "currentOp" returned error "Invalid collection name specified 'admin.$cmd.sys.inprog'"

I just installed MongoDB Compass and connected to my DB. While watching the performance for around 10s I get the following error Command "currentOp" returned error "Invalid collection name specified 'admin.$cmd.sys.inprog'" and soon after that this one Command "serverStatus" returned error "connection 19 to 127.0.0.1:29247 timed out" Can anyone explain to me what this means and how to solve it?
Thanks

Postgres giving error on update

I am using Postgresql persistence provider with Thingworx. When I am trying to run a service for ConnectivityActivation I am getting the following error
Cause: Execute Update failed: org.postgresql.util.PSQLException: ERROR: syntax error at or near "on"
Position: 145
When I tried this on some other thingworx server then I wasn't getting this error.
I am thinking in the direction that this might be some issue with the permissions but I am not able to find the root cause for this issue.
Please let me know if my understanding is correct or there could be some issue with the postgresql database.
The query run is
insert into transactiondata
("transId","category","api","devId","timestamp","state","country")
values ('123','category','api','123456','','Active','India')
on CONFLICT ("transId")
DO UPDATE SET "state" = 'Disabled', "timestamp" = '' ,"category" = 'NA';

While connecting with ORM in Codeigniter getting a invalid Database error

[https://github.com/maltyxx/origami][1]
I am getting invalid database error while trying to use the ORM Composer from github .
The error is like :
You have specified an invalid database connection group (test) in your config/database.php file.
But in config/database.php i have given it clearly. Please help me on that.

MongoDB.Driver.MongoConnectionException: Unable to connect to server. A non-recoverable error occurred during a database lookup

My service is able to connect to the MongoDB installed in a server. Am able to get the collection of the MongoDB. But when I try to insert a record to that collection it showing the below error.
MongoDB.Driver.MongoConnectionException: Unable to connect to server xxxxxxxxx. A non-recoverable error occurred during a database lookup. ---> System.Net.Sockets.SocketException: A non-recoverable error occurred during a database lookup.
Please help me to resolve this.
Thanks in advance..
Santyy