Tagged Questions

EAV is an acronym for the software entity-attribute-value model or (design) pattern.

learn more… | top users | synonyms

22
votes
7answers
7k views

Entity Attribute Value Database vs. strict Relational Model Ecommerce question

It is safe to say that the EAV/CR database model is bad. That said, Question: What database model, technique, or pattern should be used to deal with "classes" of attributes describing e-commerce ...
15
votes
5answers
4k views

Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL?

Is there a Entity Attribute Value framework out there for PHP/MySQL? I'm starting to write my own, but I feel like its been done already. Any suggestions?
14
votes
4answers
44k views

Magento - Retrieve products with a specific attribute value

In my block code I am trying to programatically retrieve a list of products that have a attribute with a specific value. Alternately if that is not possible how would one retrieve all products then ...
12
votes
6answers
10k views

How to pivot a MySQL entity-attribute-value schema

I need to design tables which stores all the (Attributes) metadata of Files i.e., FileName, Author, Title, CreatedDate ... and Custom Metadata ( Metadata added to files by Users) Before examining the ...
11
votes
4answers
3k views

How to design a database schema to support tagging with categories?

I am trying to so something like Database Design for Tagging, except each of my tags are grouped into categories. For example, let's say I have a database about vehicles. Let's say we actually don't ...
10
votes
4answers
290 views

How to store extensible metadata in an ORM-friendly way in .NET?

It seems I am unable to find any answers to "how to use EAV approach with ORM tools" question, so I'll try my luck here. Suppose I have an Entities Table: ID -> int Name -> nvarchar(50) An ...
9
votes
2answers
2k views

ALTER TABLE in Magento setup script without using SQL

Jonathon Day says "updates SHOULD NOT be in the form of SQL commands". I haven't come across any DDL or DML statments that cannot be executed via Magento's config structures. (In the ...
9
votes
1answer
534 views

Using NHibernate with an EAV data model

I'm trying to leverage NH to map to a data model that is a loose interpretation of the EAV/CR data model. I have most of it working but am struggling with mapping the Entity.Attributes collection. ...
8
votes
3answers
338 views

Keeping page changes history. A bit like SO does for revisions

I have a CMS system that stores data across tables like this: Entries Table +----+-------+------+--------+--------+ | id | title | text | index1 | index2 | +----+-------+------+--------+--------+ ...
8
votes
2answers
2k views

Performance of large EAV/open schema systems on SQL Server

Has anyone implemented a very large EAV or open schema style database in SQL Server? I'm wondering if there are performance issues with this and how you were able to overcome those obstacles.
7
votes
4answers
122 views

Implementing a Flexible Relationship in a RDBMS — What really are the tradeoffs?

I have a bunch of products with a bunch of different possible attributes for each product. E.g. Product A has a name, size, color, shape. Product B has a name, calories, sugar, etc. One way to solve ...
7
votes
3answers
1k views

Should I use EAV model?

I'm am designing my database/domain for an eCommerce application and I'm having a hard time figuring out how to store products. The website will sell a wide range of products, pens, thongs, tattoos, ...
7
votes
3answers
1k views

Alternatives to Entity-Attribute-Value (EAV)?

Our database is designed based on EAV (Entity-Attribute-Value) model. Those who have worked with EAV models know all the crap that comes with for the purpose of flexibility. I asked my client about ...
7
votes
2answers
2k views

Database EAV Pros/Cons and Alternatives

I have been looking for a database solution to allow user defined fields and values (allowing an unlimited number). At first glance, EAV seemed like the right fit, but after some reading I am not ...
7
votes
9answers
1k views

How would you design your database to allow user-defined schema

If you have to create an application like - let's say a blog application, creating the database schema is relatively simple. You have to create some tables, tblPosts, tblAttachments, tblCommets, ...
6
votes
5answers
94 views

mysql table structure proposal?

is this table any good for mysql? I wanted to make it flexible in the future for this type of data storage. With this table structure, you can't use a PRIMARY KEY but an index ... Should I change ...
6
votes
2answers
151 views

Array, EAV, Serialized LOB for custom fields?

I've been trying to answer a complex Mysql data structure problem for custom fields for an online app. I'm fairly new to Mysql so any input is appreciated. The current database is a relational ...
6
votes
9answers
1k views

How to store meta-data on columns

Let's say you're collecting insider info on upcoming superhero movie releases and your main Movie table looks something like this: Table 1 Title Director Leading Male Leading ...
6
votes
2answers
2k views

Magento ORM Documentation

Outside of the source code, is there any extensive documentation on the Magento ORM? I get the basics, and can usually dig through the Mage code base, litter it with Mage::Log calls and figure out ...
6
votes
8answers
492 views

Optimal DB structure for additional fields entity

I have a table in a DB (Postgres based), which acts like a superclass in object-oriented programming. It has a column 'type' which determines, which additional columns should be present in the table ...
6
votes
5answers
2k views

Designing an 'Order' schema in which there are disparate product definition tables

This is a scenario I've seen in multiple places over the years; I'm wondering if anyone else has run across a better solution than I have... My company sells a relatively small number of products, ...
5
votes
4answers
105 views

SQL: Normalization of database while retaining constraints

Suppose I have the following tables: ____________________ ____________________ | Organisms | | Species | |--------------------| ...
5
votes
1answer
2k views

Table Module vs. Domain Model

I asked about Choosing a method to store user profiles the other day and received an interesting response from David Thomas Garcia suggesting I use the Table Module design pattern. It looks like this ...
4
votes
2answers
244 views

MySQL Update multiple rows on a single column based on values from that same column

I have a table that looks like the following: ID Key Value Order 1 gender m 0 2 gender f 0 34 age 10 0 35 age 80 0 To update ...
4
votes
3answers
686 views

is EAV - Hybrid a bad database design choice

We have to redesign a legacy POI database from MySQL to PostgreSQL. Currently all entities have 80-120+ attributes that represent individual properties. We have been asked to consider flexibility as ...
4
votes
6answers
348 views

SQL SELECT criteria in another table

I have 2 related tables: messages -------- mid subject --- ----------------- 1 Hello world 2 Bye world 3 The third message 4 Last one properties ---------- pid mid name value ...
4
votes
4answers
2k views

EAV Database Scheme

Hello Stackoverflow comunity! I believe that my question has to do with all db guru here! Do you know the EAV DB Scheme ( http://en.wikipedia.org/wiki/Entity-attribute-value_model ) and what they ...
4
votes
1answer
1k views

Implementing EAV pattern with Hibernate for User -> Settings relationship

I'm trying to setup a simple EAV pattern in my web app using Java/Spring MVC and Hibernate. I can't seem to figure out the magic behind the hibernate XML setup for this scenario. My database table ...
4
votes
2answers
1k views

EAV Alternative to User Defined Fields?

Given that users must be able to define their own fields on an object, and define allowed values for these fields - on the fly (no compile) - how would you solve this without using EAV? Example: All ...
4
votes
1answer
704 views

Can nhibernate/orm support eav?

I've recently inherited a system that relies heavily on an EAV database structure, and is really struggling from a performance perspective. What I want to do is use nhibernate or another suitable ORM ...
4
votes
5answers
1k views

How do you model custom attributes of entities?

Let's say we're having an application which should be able to store all kind of products. Each product has at least an ID and a Name but all other attributes can be defined by the user himself. E.g. ...
4
votes
5answers
3k views

Key/Value pairs in a database table

I need to design a Key/value table in my database and I'm looking for guidance on the best way to do this. Basically, I need to be able to associate values to a dynamic set of named properties and ...
4
votes
4answers
444 views

what's the best implemention of client creatable and modifiable web forms in a relational database?

In several web application projects I've been a part of, the client asks to be able to create their own forms. The question arises on how to store their form definitions, and then how to store user ...
3
votes
2answers
47 views

How to filter rows in SQL EAV model?

I got a EAV SQL table which contains a list of preferences used for the display of a GUI. Each preference is represented by a row in the table. I need to filter these rows to have only one row per ...
3
votes
1answer
53 views

DB Design to allow user to define products, product specs and let themself insert orders

I'm designing a db because I need to develop such a CRM, where the users are able to specify new products, products specs and pricing and then let themself to insert orders for that products specified ...
3
votes
1answer
68 views

generating unit test data for a complex DB (EAV)

I'm working with a legacy application that makes some use of the well-known/dreaded data modeling pattern known as EAV. This has made choosing a data generation strategy to use during unit testing of ...
3
votes
4answers
182 views

Which one to use? EAV or Blobs in the database?

I am currently working to rework the data system of our application. Basically, it is designed so that people can add all the custom fields they want, with only a few constant/always-there fields. ...
3
votes
4answers
271 views

select from mysql db with 300 tables using a default prefix

I have a program that selects from about 200 tables with prefix. eg PBN_products, PBN_address, PBN_others. Instead of appending the prefix on each table for the select statement, is there a way of ...
3
votes
4answers
641 views

How do I rename an attribute code in Magento?

I want to rename an existing attribute's code to something else. The reason is because the attribute field is filled out for 300+ products and I don't want to have to re-import all of those just ...
3
votes
1answer
240 views

How to implement user defined fields and grouping for the multi-tenant application: EAV, fixed tables pattern, NoSQL

I'm working at a SaaS, where any tenant can have several lists of contacts, each list can have any number of custom fields contacts of this list can store and any number of groups the contancts of the ...
3
votes
4answers
198 views

Oracle: How do I grab a default value when a more specific value is null from within the same query?

That title is brutal, but I don't know how else to put it. I have a key value table tied to a user_id that stores user preferences throughout the site. If a user hasn't gone in and updated any of ...
3
votes
3answers
372 views

SO what RDF database do i use for product attribute situation initially i thought about using EAV?

i have a similar issue as espoused in http://stackoverflow.com/questions/695752/product-table-many-kinds-of-product-each-product-has-many-parameters i am convinced to use RDF now. only because of one ...
3
votes
3answers
637 views

How to overcome shortcomings in reporting from EAV database?

The major shortcomings with Entity-Attribute-Value database designs in SQL all seem to be related to being able to query and report on the data efficiently and quickly. Most of the information I read ...
3
votes
6answers
774 views

Storing global site preferences [PHP/MySQL]

Can anyone recommend the best practice for storing general site preferences? For example, the default page title if the script doesn't set one, or the number of featured items to display in a content ...
3
votes
1answer
686 views

How does Virtuemart do EAV without using EAV?

I understand the three basic failures in EAV, namely that it takes a lot of work to reassemble the data. However, I want a database where I can add custom fields. A lot of people say that Virtuemart ...
3
votes
3answers
588 views

SQL Server, where field is int?

how can I accomplish: select * from table where column_value is int I know I can probably inner join to the system tables and type tables but I'm wondering if there's a more elegant way. Note that ...
3
votes
1answer
430 views

Entity Framework - Detaching and Re-attaching entities?

I have Entity-Attribute-Value (EAV) database. Entity in this sense has nothing to do with entities in EF but merely refers to some "thing" about which you are storing information. You store a value in ...
3
votes
5answers
10k views

MySQL correlated subquery in JOIN syntax

I would like to provide a WHERE condition on an inner query by specifying innertable.id = outertable.id. However, MySQL (5.0.45) reports "Unknown column 'outertable.id' in 'where clause'". Is this ...
3
votes
6answers
5k views

Best beginner resources for understanding the EAV database model?

I'm doing some custom work with Magento, which has a database design based upon the EAV model, and I need some good resources/tutorials that explain the EAV database model. Please don't provide ...
3
votes
4answers
469 views

Choosing a method to store user profiles?

I'm in the process of working on a user profile system for a website and am pondering what would be a better (scalable) approach to take. I've come up with two solutions and am looking for either ...

1 2 3 4 5