ObjectDB Database Search
101-150 of 200 results500Mb ObjectDb database opening issue your help in finding the exact cause of this issue. One thing you should try is to remove ... code). support Support Thank you for suggestion to remove all activation codes. I removed ... With removed activation codes 1/29/2016 18:56:00.560: INFO : (AppDataStoreManager.java:269 thread:AWT | |
Optimistic locking: prevent version increment on entity collection attribute the increment of the version of entity E when entities are added to or removed from the collection ... (i.e. the collection is defined as a mapped by) then adding and removing entities should not change ... side). Regarding performance, it may improve performance of adding / removing readers, but traversal from | |
Repair broken references in entities Hello, it is possible to recover an entity that has been removed automatically by CascadeType. Remove . After cascade remove the removed entity will be persisted with the identical primary key. Are all broken references in other entities on this removed /persisted entity repaired again? best regards | |
Filename.odb$ Persisting Issue Eclipse and wait a bit for it to remove itself. Any ideas why this happens? Thanks, Dragon DragonRulerX ... (); shiftImportDB.close(); emf.close(); } } I cannot/don't know how to remove external ... that this [filename].odb$ file exists for some reason (unknown to me) and doesn't always get removed | |
OneToMany and cascade delete problem over all offers from all products for given store. The problem is, that after removing product, all "connected" offers are also removed (cascade). After that, when I iterate over offers in store ... . Therefore, you must remove a Product from the list of Product instances in a Store when the Product | |
OrphanRemoval not working? { ... @ManyToOne private Invoice invoice; ... } I'm expecting, that removing invoiceitem from the list removes ... this has no effect... Is there any mistake? Thank you Michael anaq x Orphan removal was not handled ... it. Notice that usually modifications should be done on the owner side, but in the case of orphan removal | |
Slave server not getting deletes This is an interesting report. Have you tried a normal remove . i.e. not using a delete query? Update ... : Removing entity objects from the database using a DELETE query may be slightly more efficient than retrieving entity objects and then removing them, but it should be used cautiously | |
possible index required for improving query performance, putting the party first in the index definition did help. However, it did not work until I removed ... after a few thousands records were added. I'm quite happy to remove this index as we don't really need ... on one of them. Which index will it pick? 2. How do we remove this index from an existing | |
Should derived fields of an EmbeddedId be manually maintained by app code?(); if (oldReferer != null) { oldReferer. remove (o); } o.setOtherContainerRelationship(this); o.setOtherRelationshipKey(key); } private void remove (ECompoundKeyMapSubItem o) { o.setOtherContainerRelationship(null ... : Remove any unnecessary code. Do you really need 3 entity classes and 2 embeddable classes | |
Modifying something with Explorer -> app JPQL with Enum doesn't work anymore;maintenance operations. support Support You're welcome. Well, you're asking me to remove the problem ... again. zmirc Mircea Chirac Well, you're asking me to remove the problem. The problem ... encountered this I had to remove @Enumerated with Long, and add ids for each Enum in my logic | |
Bulk Delete and Update - best practice? to update/ remove a large number of objects? I've had success with the "drop" keyword in ... found which works consistently is to load and remove objects (one by one or small batches ... of data in one transaction requires a larger heap size. This limitation may be removed in future releases | |
Schema Update: class hierarchy change/forum/899 that ObjectDB support automatic schema evolution for adding and removing fields and for class ... hierarchy ( remove field name from MyEnity) - it works (but we lost the content of field 'name ... it further? support Support Suppose we have a change, in which a class is removed from | |
Unexpected exception during open the database String scopeID; ... } if we remove the @Index annotation in the entity or we remove ... which have a field with @Index. If we remove the @Index from the entity or we remove the schema change | |
Best practice: Database update/migration of embedded databases in products. Attributes added, removed and renamed. If attributes were removed , then only because the data ... evolution - for adding and removing fields and for class hierarchy change. Configuration schema changes ... are converted and stored in the database in their new form, you can remove the fields firstName and familyName from V2.0. support Support | |
Left join fetch behaviour doesn't retrieve children? with mappedBy to the parent. This just break the test ! Test by yourself by adding / removing ... - Will you plan to invest more in that problem and provide a solution ? Thanks, Xirt Note : Removing ... for testing 3- Wait ... On my AMD FX 8350, it took 60s Now, go the MyEntity class and remove "mapped-by | |
Issue with orphanRemoval and multiple EntityManagers multithreaded application). When I create a child entity in one transaction and then remove it in another transaction, the database still contains 1 child entity. If I remove it and add another child ... to new objects). Actually in this test merge is not really needed so removing the merge solves | |
Soft Reference Object Cache Recommendation removing ObjectDB pagefile caching reference. Any help is appreciated! (P.S. Yikes!  ... all objects in a manual strong reference list and upon GC detection manually remove the strong ... Root of persistenceManager (java frame). That is right. The page cache may not be removed | |
Memory Leak in EntityManagerFactory ? and removed from memory (checked in the Profiler) 4. nevertheless there are lots of identical Copies ... (but I'll check). Should I remove the isOpen() Condition B? I will also try to call clear. The close ... ++ and close_count++ each synchronized . And in the end, there was no memory leak at all. Removing | |
Query becomes slower on moving from ObjectDB 1.x to ObjectDB 2.x) and ObjectDB 2.x uses the second definition (without the index). Try to remove the second ... with that package.jdo file removed the index. So maybe after fixing the package.jdo file you will not ... is not indexed so ideally it would be using the second defination. Anyways, i tried removing the second | |
EntityManager JPA or JDO impl and different behavior path to remove the M2_REPO dependency for objectdb jar and instead add a dependency to the objectdb ... to reuse a primary key for AttributeName. So I removed the CascadeType.All from Holder and persisted ... 92 in Holder.java, and removing the persisting of OtherObject in the unit test (lines 136-139 | |
Some details about db behavior above mentioned case is persisted successfully, now I remove the A and want B to return null reference ... that when A is removed all objects referring to it will have null? I know that there are many questions ... part of the B instance. When that A instance is removed you should also update the reference from B | |
drop a column from table Just remove the field from the entity class. See Automatic Schema Evolution . Space in the database ... is physically removed only when an object is stored again, after removing the field from the entity | |
com.objectdb.o.UserException: Ambiguous entity name seems to be similar to a new entity class. However, I removed the embeddable class from all of my classes ... . How can I remove this embeddable class without deleting my database or deleting the entity ... not come. It also now seems to be possible to remove the embeddable class in the explorer. itsme Martin Petzold | |
Items in list are doubled, when the entity class is not enhanced.getTransaction().begin(); for(Object o : l){ em. remove (o); } em.getTransaction().commit(); l = em ... ){ em. remove (o); } em.getTransaction().commit(); em.getTransaction().begin(); Customer c = new Customer ... _03 and was changed in order to fix orphan removal ). If Customer is not dirty - it doesn't cascade | |
Foreign key constraint issue to Parent, so that when the parent is deleted all children are removed as well. Unfortunately, in ... (cascade = {CascadeType.MERGE, CascadeType. REMOVE }, mappedBy = "parent", orphanRemoval = true)   ... want to remove all orphaned child entities (as with a foreign key constraint). Interestingly | |
Lazy loading does not work - crud takes long; private List advalm; Entity.class On the other side if i remove all items from the OneToMany Relation at Example Datapoint (10.000 Recors). The API need for 50 Records 1 second to remove . for(Datapoint d: list){ em. remove (em.merge(d))} fjubuu Maik The class definitions including | |
Pre-detach loading: retrieval by navigation not working in if statement - that the compiler will not remove .] This does not work (is not enough) before the if statemetn test ... the compiler just removes it, for the loading to be triggered it has to be somehow stored in ... : question removed , already answered by docs quoted below here ] webel Dr Darren Kelly | |
Lock prevents PersistenceManager.close when retainValues = false.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue. remove (ReferenceQueue.java:143) at sun.rmi.transport ... .ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue. remove (ReferenceQueue.java:143) at java.lang.ref.ReferenceQueue. remove (ReferenceQueue.java:164) at java.lang.ref.Finalizer$FinalizerThread.run | |
Subquery.groupBy(grouping) - JPA Method, any previously added grouping expressions are simply removed . This method only overrides the return | |
Subquery.where(restrictions) - JPA Method. If no restrictions are specified, any previously added restrictions are simply removed . This method only overrides | |
CriteriaQuery.orderBy(o) - JPA Method, if any, is simply removed , and results will be returned in no particular order. The order | |
CriteriaQuery.having(restrictions) - JPA Method), if any. If no restrictions are specified, any previously added restrictions are simply removed | |
CriteriaQuery.orderBy(o) - JPA Method ordering, if any, is simply removed , and results will be returned in no particular order. The left | |
InterfaceRef jakarta.persistence.criteria.CriteriaUpdate previously added restrictions are simply removed . Parameters: restrictions - zero or more restriction | |
References to objects of missing obsolete entity classes: When we migrate our product profiles, we get an exception regarding entities that were removed in an earlier ... was indeed removed . This is abnormal state for a database, so if possible, is is recommended to try fixing ... deleted? or its class removed ? Was com.btc.ep.formalnotation.bl.internal.dmos.PhaseImpl | |
Improve ObjectDB Server Improve ObjectDB Server to behave and feel more like a traditional db-server: - Remove SWING dependency (i.e. remove the tray icon or make it external from the core server) - Provide the possibility to easily install the objectdb as service on each system (requires removing swing dependency | |
log entry and massive performance issues times per day we have a simple object remove (entityManager. remove ) that takes more than 5 minutes ... when the slow removal happens? It may help to identify the exact build in which this issue is started. 2 ... more information about the removed object? Is it a single object or a large graph of objects | |
again merger missing logs + objectdb exception issue rather then ObjectDB (if an object is removed from the database but still referenced ... was fixed in version 2.7.2 (temporary stack traces in the log will be removed in the next build ... that will be removed in the next build, and may be ignored now. They should be shown on any OS | |
InternalException during producer/consumer scenario objects into a table while consumer threads remove the objects based on age, priority, etc. There are 2 ... .objectdb.jpa.EMImpl. remove (EMImpl.java:377) at rbccm.felix.objectdb.messaging.ObjectDbMessagePipe ... .TYM.aq(TYM.java:840) at com.objectdb.o.TVS.g(TVS.java:93) at com.objectdb.jpa.EMImpl. remove (EMImpl | |
Blocked by find of being blocked. felixobjectdb Richard Szurgot Using find & remove seems to hit similar problems. See attached test - you can switch between delete statements and find/ remove by commenting/uncommenting ... to 8mb definitely helps the load and remove method of deleting - the test now completes when using | |
missing merger and remove the old version with missing parts. Please run the above query on the repaired database ... with later commit )? we removed all flushs and since that we do not have these errors any ... when the option in #21 is disabled. removing the option does not help hgzpincher Hans-Georg Zwicker   | |
InternalException is possible as a result of schema change, in which id fields are removed . Notice that changing ... an object from the database Remove the object Commit the transaction, storing the updates ... action (load, remove , etc). When an update has occurred the actions are now: Open a new EntityManager | |
Freeze during save.ReferenceQueue. remove (ReferenceQueue.java:143) at sun.rmi.transport.DGCClient$EndpointEntry ... .ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue. remove (ReferenceQueue.java:143) at java.lang.ref.ReferenceQueue. remove (ReferenceQueue.java:164) at java.lang.ref.Finalizer$FinalizerThread.run | |
ArrayIndexOutOfBoundsException on flush 644) at rbccm.felix.objectdb.workflow.ObjectDbGraphContainer. remove (Unknown Source) at rbccm.digest2 ... exception is a cleanup response to the first. An attempt to remove the object tree from the database ... ; em. remove (loadedgraph); em.flush();   | |
ObjectDB 2.6.5 on cascading removal of an already removed object. Renamed internal Enhancer hidden methods to non ... of connections specified in configuration. Fixed optimistic lock exception on removing of a flushed modified | |
ArrayIndexOutOfBoundException. This requires fixing the application (making sure that references to deleted objects are removed ... Sedlakova During the weekend we ran intensive tests of concurrent persist/find/ remove /update operations ... . The problem dissapeared when removing the @OneToOne(fetch = FetchType.EAGER) annotation. I am not | |
New Java 8 (JDK 1.8) Collection Methods is that orphan removal does not happen as a result of removing a reference to an object (which becomes an orphan) using the new methods: removeIf(predicate) and remove (key, value). support Support | |
Internal Exception and Index Problems can be thrown due to any addition or removal of persistent fields in an entity class, including moving a field in the hierarchy (which includes removing it from one class and adding it to another super/sub class), and due to any inheritance change (such as adding, removing or changing the super class | |
'DROP TABLE' in ODB? of this type in database I want to remove this type from schema. How can I do this? Is there something like ... . Is it correct? support Support Yes. lwalkowski Lukasz Walkowski Any update on this? I also like to remove ... that unused classes etc. can be removed from the DB? data303 Mark Egloff It will probably be included | |
Issue with DISTINCT Select the way, why are you using fully qualified names? if you remove entity names from your @Entity tags ... ) because the order here is derived from $1, not from $2 that is removed from the results. support Support Hi, Now you've lost me.. why is $2 removed from the result? I mean, it is not a collection |