active questions tagged oodbms - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:56:20Z http://stackoverflow.com/feeds/tag/oodbms http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1350044/why-arent-oodbms-as-widespread-as-rdbms 2 Why aren't OODBMS as widespread as RDBMS? Bruno Reis 2009-08-29T00:41:39Z 2009-11-14T22:34:52Z <p>Why are relation databases more common than object-oriented databases?</p> <p>If the Object Oriented Programming paradigm is so widespread, shouldn't we see lots of OODBMS? Wouldn't they perform better than the RDBMS+OR/M?</p> http://stackoverflow.com/questions/879093/main-memory-db-vs-object-db 2 Main Memory DB vs Object DB ShaChris23 2009-05-18T18:22:18Z 2009-11-06T10:34:09Z <p>I'm currently trying to pick a database vendor.</p> <p>I'm just seeking some personal opinions from fellow database developers out there.</p> <p>My question is especially targeted towards people who:</p> <p>1) have used Main Memory DB (MMDB) that supports replicating to disk (hybrid) before (i.e. <a href="http://www.mcobject.com/standardedition.shtml" rel="nofollow">ExtremeDB</a>) </p> <p>or </p> <p>2) have used <a href="http://www.versant.com/en%5FUS/products/objectdatabase" rel="nofollow">Versant Object Database</a> and/or <a href="http://www.objectivity.com/pages/objectivity/technical-information.asp" rel="nofollow">Objectivity Database</a> and/or <a href="http://www.progress.com/objectstore/index.ssp" rel="nofollow">Progress ObjectStore</a></p> <p>and the question is really: if you could recommend a database vendor, based on your experience, that would suit my application.</p> <p>My application is a commercial real-time (read: high-performance) object-oriented C++ GIS kind of app, where we need to do a lot of lat/lon search (i.e. given an area, find all matching targets within the area...R-Tree index). </p> <p>The types of data that I would like to store into the database are all modeled as objects and they make use of std::list and std::vector, so naturally, Object Database seems to make sense. I have read through enough articles to convince myself that a traditional RDBMS probably isnt what I'm really looking for in terms of</p> <ol> <li>performance (joins or multiple tables for dynamic-length data like list/vector) </li> <li>ease of programming (impedance mismatch)</li> </ol> <p>However, in terms of performance, </p> <ol> <li><p>Input data is being fed into the system at about 40 MB/s. </p></li> <li><p>Hence, the system will also be doing insert into the database at the rate of roughly 350 inserts per second (where each object varies from 64KB to 128KB),</p></li> <li>Database will consistently be searched and updated via multiple threads. </li> </ol> <p>From my understanding, all of the Object DBs I have listed here use cache for storing database objects. ExtremeDB claims that since it's designed especially for memory, it can avoid overhead of caching logic, etc. See more by googling: Main Memory vs. RAM-Disk Databases: A Linux-based Benchmark</p> <p>So..I'm just a bit confused. Can Object DBs be used in real-time system? Is it as "fast" as MMDB?</p> http://stackoverflow.com/questions/61520/what-are-the-pros-and-cons-of-object-databases 6 What are the pros and cons of object databases? Kevin Pang 2008-09-14T18:04:57Z 2009-09-25T20:58:32Z <p>There is a lot of information out there on object-relational mappers and how to best avoid impedance mismatch, all of which seem to be moot points if one were to use an object database. My question is why isn't this used more frequently? Is it because of performance reasons or because object databases cause your data to become proprietary to your application or is it due to something else? </p> http://stackoverflow.com/questions/170649/why-have-object-oriented-databases-not-been-succesful-yet 15 Why have object oriented databases not been succesful (yet) ? lurks 2008-10-04T17:06:03Z 2009-09-18T13:01:16Z <p>That's the question. Give only one reason you think why have OODB failed or why many systems nowadays still use relational databases.</p> http://stackoverflow.com/questions/1069187/how-to-design-many-to-many-relationships-in-an-object-database 3 How to design many-to-many relationships in an object database? paul 2009-07-01T13:36:02Z 2009-09-02T19:40:17Z <p>I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library.</p> <p>Consider the following objects: Book, Category.</p> <p>A Book can be in 0-n categories and a Category can be applied to 0-m Books.</p> <p>My first thought is to have a joining object such as BookCatecory but after a bit of Googling I see that this is not appropriate for 'Real OO'.</p> <p>So another approach (recommended by many) is to have a list in both objects: Book.categories and Category.books. One side handles the relationship: Book.addCategory adds Category to Book.categories and Book to Category.books. How to handle commits and rollbacks when 2 objects are been altered within one method call?</p> <p>What are your thoughts? The second approach has obvious advantages but, for me at least, the first 'feels' right (better normed). </p> http://stackoverflow.com/questions/1175517/was-anyone-thinking-of-clr-server-instead-sql-server 1 Was anyone thinking of 'CLR Server' instead 'SQL Server'? Shimmy 2009-07-24T02:40:07Z 2009-07-24T03:18:56Z <p>I was thinking many times, now days that we have Linq and other CLR language-specific built-in search, sort and other capabilities over tables, collections and object, why not have the 'SQL Server' or rather call it 'CLR Server' (not only OOP Server but <strong>CLR 3.5</strong>) which will be a CLR (or COM) DLL that exposes the data allowing users linqing right over it; this will save much of cuncurrency pain, time of developing in two different language and so on. I am not saying (god forbid) throw away SQL, it just crosses my mind to many times, I thought let's hear what the community has to say about.</p> <p>This idea is not completely new of course, there is such (different than my idea tho) a DB in FoxPro. But I am talking about a pure CLR .NET 3.5+ DB that will allow external accessing the DLL, should not even generate SQL Queries, the whole system should work differently.</p> <p>There should be additional Linq keywords for insert update and delete but they should all be 'Linq style'.</p> <p>I am 100% sure that Microsoft have been thinking about this before maybe they had performance considerations and more IDK, let me hear your opinions, I personally think that today with .NET 3.5-4.0 if we will have collection handling, Extension methods etc. in the server treating all the data as object it might be really cool (regarding coding, again, donno what about performance).</p> <p>Whatcha say? I hope this question was asked in the right place, please accept my apology in advance, if it does not belong to here, please comment and I will delete it.</p> <p>Sorry for this poor example, but please get the idea:</p> <pre><code>Module Module1 Sub Main() ClrServer.MyDataBase.ObjectContext.MyTables.Add(New ClrServer.MyDataBase.MyTable) Try ClrServer.MyDataBase.SaveChanges() Catch e As ClrServer.UpdateException End Try Dim x = From a In ClrServer.MyDataBase.ObjectContext.MyTables Where a IsNot Nothing Dim y = From a In ClrServer.MyDataBase.ObjectContext.MyOtherTables Where a IsNot Nothing Dim z = From a In ClrServer.MyDataBase.ObjectContext.MyFreakingTables Where a IsNot Nothing 'So far no access to server made, the local maintainer hold up the request 'Connection to server is going to be made in the next line 'and previous 3 queries will be loaded then. ClrServer.MyDataBase.ObjectContext.Execute() End Sub End Module 'This is server side code, there should be internal ways to connect to real data when executing. Namespace ClrServer Namespace MyDataBase Public Class MyTable End Class Module ObjectContext Public MyTables As List(Of MyTable) Public Sub SaveChanges() End Sub End Module End Namespace End Namespace </code></pre> <p>We could then import the namespaces and use the ObjectContext inline. Please do not say "bad code" cuz it is bad code, I only wrote a poor pseude example right in the Stackoverflow WYSIWYG editor just for you to see what I mean.</p> http://stackoverflow.com/questions/743591/migrating-from-native-oodbms-to-orm-entity-framework-sql-server 1 Migrating from 'native' OODBMS to ORM (Entity Framework / SQL Server) Jörg Battermann 2009-04-13T10:49:45Z 2009-07-17T11:31:46Z <p>A while ago we started developing a new project which internally has about 25-30 different classes/types/models that are heavily related to each other either via 1:n, n:m or n:1 relationships.</p> <p>Back then we went with a native .net oodbms system basically because what it allowed us to do was to take our object model and simply add a few persistence related methods(-calls) here and there and we were ready to go. However, over time we ran into more and more caveats, really bad, non-fixable (within a reasonable timeframe) limitations that forced us to implement slow workarounds resulting in mediocre performance and scalability issues on the horizon and license fees have almost increased by a factor of 5 for us with no change on our end (they got bought by big inc.).</p> <p>Therefore we're currently starting to look for a long-term solution in terms of scalability/performance as well as maintenance. We had a look at other "real" oodbms'es and always came across major breakers for us and therefore we started to look a little further and basically are thinking about ORMs now, which hopefully let us keep most of the focus on our objects instead of wrangling with SQL.</p> <p>So basically here's my Question: does anyone have any real-world experience with Microsoft's Entity Framework or any other .NET ORM that keeps configuration as maintainable as possible as well as performs well in closely/heavily related entities? The amount of data we store is not amazing or extensive in any sort (we expect a total of 100k instances across all entities within the next 3 years).</p> <p>Does anyone have any ideas/suggestions for an ORM and/or experience migrating from an oodbms to rdbms?</p> http://stackoverflow.com/questions/757037/object-oriented-database-vs-object-relational-database 8 Object Oriented Database Vs object Relational Database Andriyev 2009-04-16T16:50:01Z 2009-06-23T09:16:16Z <p>Hi,</p> <p>I wonder how Object Oriented data modeling is different from Object Relational data modeling? </p> <p>Is it something like the pluses of both object oriented and relational data modeling were clubbed to achieve object relational data modeling?</p> <p>cheers</p> http://stackoverflow.com/questions/954021/could-you-use-lucene-as-an-oodb 0 Could you use Lucene as an OODB? Kane 2009-06-05T02:25:42Z 2009-06-05T03:36:57Z <p>Given that Lucene is a robust document based search engine could it be used as an Object Database for simple applications (E.G., CMS style applications) and if so what do you see the benefits and limitations? </p> <p>I understand the role of the RDBMS (and use them on a daily basis) but watned to explore other technologies/ideas.</p> <p>For example say my domain entities are like:</p> <pre><code>[Serializable] public class Employee { public string FirstName {get;set;} public string Surname {get;set;} } </code></pre> <p>Could I use reflection and store the property values of the Employee object as fields in a Lucene document, plus store a binary serialized version of the Employee object into another field in the same Lucene document?</p> http://stackoverflow.com/questions/889770/relational-object-oriented-database-which-one-is-better-will-be-suppressed 1 Relational & Object-Oriented Database which one is better, will be suppressed? Artur 2009-05-20T19:27:00Z 2009-05-20T20:28:07Z <p>I wonder if RDBMS or OODBMS will be suppressed in near future?</p> <p>Today I read quite a few articles about differences in both of them and most of the articles seem to favor OODBMS. Does that mean that RDBMS will be suppressed by, not yet well developed, OODBMS? If not, what makes you think so?</p> http://stackoverflow.com/questions/398206/should-i-use-oodb-for-small-applications 0 Should I use OODB for small applications? Perpetualcoder 2008-12-29T17:52:07Z 2009-05-17T23:23:16Z <p>We looking to build an application to maintain meeting minutes and similar stuff using .net. I was thinking of using <a href="http://www.db4o.com/about/productinformation/" rel="nofollow">db4o</a> or some OODB for this. Is it a bad idea? I am looking to simply create a repository of meeting minutes where users can perform lookups by date and little things like that. Is having a SQL Express DB a better option than using db4o or <a href="http://www.versant.com/en_US/products/fastobjects" rel="nofollow">Versant FastObjects</a> </p> <p>EDIT: This is a small brainchild to track discussions and meeting minutes. I want to keep the app size as small as I can.</p> http://stackoverflow.com/questions/776645/many-to-many-object-to-object-relation-in-c 3 Many to many object to object relation in C# Kamil Zadora 2009-04-22T11:00:33Z 2009-04-22T11:15:57Z <p>Hi,</p> <p>I am working on a small educational project to exercise perst.net.</p> <p>We have a tiny design problem, that is how to best resolve the relation between two classes of objects, that is the <em>participant</em> and <em>championship</em>. It is a many to many relation as <em>participant</em> can take part in many <em>championships</em> and <em>championships</em> can have a multiple <em>participants</em>.</p> <p>Please advise how to do this best in C#, should I use the 'relational DB like' technical class?</p> http://stackoverflow.com/questions/732665/does-linq-and-projects-like-i4o-make-object-oriented-dbs-a-viable-alternateive-to 0 Does Linq and projects like i4o make object oriented DBs a viable alternateive to relational DBs? Jonathan Parker 2009-04-09T03:23:56Z 2009-04-09T19:22:18Z <p>Given Linq and technologies like <a href="http://www.codeplex.com/i4o" rel="nofollow" title="Indexed LINQ">i4o</a> is there any real reason why an object oriented database management system won't be a viable alternative to a relational database management system for new projects starting in the next 3 to 5 years?</p> http://stackoverflow.com/questions/300987/how-do-you-do-data-management-tasks-in-a-db4o-object-database 2 How do you do data management tasks in a Db4o Object Database? JC Grubbs 2008-11-19T04:28:00Z 2009-02-06T09:19:05Z <p>I'm new to OODBMS systems, but I'm using Db4o on a new project for which it's perfectly suited. Things are going great and I really like the concept, but I'm struggling with how to do basic data management tasks associated with development. Periodically I want to wipe out all of a certain Type in the DB, how do I do this without actually writing a method in code to do it and then running my app? Also, how do I address "schema" changes. If I change the definition of a particular class, does Db4o create a new "table" for it, or does it recognize it as the same Type with just a different set of members?</p> <p>Btw...I'm in .NET 3.5</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac 8 Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? jonathanconway 2008-10-06T02:18:36Z 2008-11-07T01:17:13Z <p>Say you're coding some kind of web application. Something where people can contribute content, e.g. a simple photo-sharing site.</p> <p>How many good reasons can you think of to <em>not</em> go with an object-oriented database (e.g. db4o)?</p>