ObjectDB Database Search
1-28 of 28 resultsFROM clause (JPQL / Criteria API)
because both are used to iterate over objects. Range variables Range variables are query identification variables ... explicitly in the name element of the @Entity annotation. Multiple range variables are allowed ... countries. Caution is required when using multiple range variables. Iteration over about 1,000,000
|
|
JPA Query Structure (JPQL / Criteria)
to an entity class is called a range variable. Range variables define an iteration over all the database objects of a bound entity class and its descendant classes. In the query above, c is a range ... object from the iteration of the c range variable, which in this case includes all Country objects in
|
|
Index Definition
them to accelerate query execution. Indexes are especially efficient for lookup and range queries: SELECT p ... matches the field order in the WHERE clause, ObjectDB can perform a more efficient range scan
|
|
Setting and Tuning of JPA Queries
The Query and TypedQuery interfaces define various methods for setting and tuning query execution . To take effect, you must invoke these methods before running a query with getResultList or getSingleResult . Result range (setFirstResult, setMaxResults) The setFirstResult and setMaxResults methods
|
|
JPA Persistable Types
and retrieval). Simplifies queries on dates and date ranges . When an entity is stored, its date
|
|
Is ObjectDB scalable? What are its limitations?
ObjectDB is highly scalable and can manage efficiently databases in a wide range of sizes, from a few Kilobytes to hundreds of Gigabytes and even Terabytes. ObjectDB can be used in small embedded single user applications as well as in heavy loaded multi threaded multi user applications. ObjectDB
|
|
WHERE clause (JPQL / Criteria API)
over all Country objects in the database, using c as the range variable. Before passing these Country objects
|
|
jakarta.persistence.EntityManager
their primary key, and execute queries which range over entity types. An entity may be disassociated from ... pessimistic lock on an entity instance. The full range of possible lock types is enumerated by LockModeType
|
|
Multiple @ID
I have an entity with 2 @ID @Entity public class TheTable extends AbstractMMODataObject { @Id String userId; @Id long range ; It was a mistake, I really should have just made range an @Index but it already has millions of records in it. I am wondering if I query select t from TheTable t where range
|
|
Explorer in 2.3
to have: 1. Export of selected data: a. Simple - Select a range of cells or a column header and copy ... to split the results by id ranges (adding additional top levels to the tree, similarly to viewing
|
|
Standalone server needs dependencies?
; My query was a simple select statement with a where clause like where t.id=:id and t. range =: range
|
|
[ODB1] Chapter 8 - ObjectDB Server
can also be specified in a comma separated list and using a hyphen (-) to indicate a range . For example, a value "192.18.0.0-192.18.194.255,127.0.0.1" allows connections from any IP address in the range of 192.18
|
|
virtual servers and one file
(you can keep all the primary keys in memory or use a simple test database with a continuous range of simple
|
|
Composite Index error 328
. It may be supported by ObjectDB in the future as it may be useful for some range queries. support Support
|
|
objectdb on single server 20TB storage possible ?
(for example by time range or tenant). Whether ObjectDB is suitable at that scale depends
|
|
About LIMIT and OFFSET as query tokens
range using setFirstResult and setMaxResults . support Support Thanks you!!! mgarciat Miguel
|
|
Failed to read DB file while online backup is running
will be needed in order to explore this issue, including range of affected ObjectDB versions. support Support I
|
|
Grouping by date()
) in which HOUR returns a value in the 0-23 range . support Support Thanks for the fix. New version works well. lwalkowski Lukasz Walkowski
|
|
Option or strategy to disable/skip runtime enhancement checks (to improve load time)?
On startup of a Maven-based web app there is verbose logging of object checking whether enhancement has been applied to a wide range of classes, many of which have nothing to do with the entity layer. For example, it is checking whether PrimeFaces JSF toolkit classes are enhanced. I am using
|
|
Problem with 'where' and date()
Hi, Today I was playing with some date- range queries in explorer and found a small problem. When you try to use queries like this: SELECT o from TestObject o where o.date :someDate where o.date is java.util.Date, 'where' doesn't work as it should. Results are not filtered by date
|
|
Changing Primary Key
I have a "Table" that currently has @Id private String userId; @Id private long range ; private String someOtherField; I need to add a @Id to someOtherField. But when I add that, and query the table all the PK fields are null or 0. What can I do to modify primary keys?  
|
|
Processing thread count for 8-core server
? cvtsc Dev Team It could be in the range of 15-30 threads, but choosing the best value will require
|
|
Unable to execute update query
in 100% of the cases. If I limit the amount of positons to update by specifying an id ranges
|
|
Which storage fits best to ObjectDB?
considerably worse. Our DB files range from 700MB to 5GB. So the question which arises: does
|
|
LIMIT or TOP functions
Is there LIMIT or TOP functions in object db? If so can you provide some examples? vinodh vinodhkumar You can set query result range by using the setFirstResult and setMaxResults methods. You can find more details and an example in the manual . support Support Thanks. This solved my purpose. vinodh vinodhkumar
|
|
InternalException during producer/consumer scenario
) The consumer can select the "next" object based on a range of potentially complex criteria. 2
|
|
Getting an error when adding activation code to conf file
.createEntityManager(); em.getTransaction().begin(); IntStream. range (0, 1000000).forEach(i
|
|
Sort of very large objects - out of memory
keys were either ascending or descending, since then a range query could just pick the first or last
|