A method of modelling and storing data by breaking it into three parts: the entities, their attributes and their values.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

Database design - heterogeneous tuples

I'm implementing a database for a Python application with SQLite and I have a question regarding how I should design it. The database has a table for "items". Items have an unique "id" and a name to ...
1
vote
0answers
42 views

magento - reindex category product position

I've developed a custom product sort module with drag'n'drop and, for simplicity and speeds sake, it updates directly to the EAV tables. I save this new position with: $write = ...
0
votes
2answers
35 views

Store entities with varying attributes (EAV alternative)

I'm looking for a way to store EAV-like subject on a relational DB. I'm going to use Rails + Mysql. I had little expirience with EAV in PHP + Mysql. ~500 entries. That's nothing, of course, all ...
1
vote
2answers
26 views

XML Property 'InnerText' is WriteOnly when trying to read attribute value

I'm getting a "Property 'InnerText' is WriteOnly" error when trying to read an attribute value Here's my XML: <?xml version="1.0" encoding="utf-8"?> <products> <product ...
1
vote
1answer
55 views

How to use Sparse Columns in a Dynamic SQL script

I have used the below DYNAMIC SQL SCRIPT to convert a table like (1,AttributeName1,Attributevalue1) (1,AttributeName2,Attributevalue2) (2,AttributeName1,Attributevalue1) ...
0
votes
1answer
41 views

EAV and DataTypes

We are going to use the EAV Pattern for a szenario, where we will have various different entities with very different attributes. The "basic" EAV-Pattern is made out of 3 tables. As different ...
0
votes
1answer
61 views

Magento custom product attribute visibility

I've been loading up my Magento webshop with a ton of products with a LOT of custom attributes, however, their 'Visible' value in the back end is set to 'No'. Apart from this being a mistake on my ...
0
votes
1answer
62 views

Getting products with desired attributes

I have a category with products and a set of attributes. Those attributes are "Shape" and "Diameter". When I open a category without applying filters I get products with following query: "SELECT * ...
0
votes
2answers
53 views

Working with EAV model in Propel

I have a database with a EAV structure, having this tables : Entity (id, name) Attribute (id, name) AttributeValue(fk_id_entity, fk_id_attribute, value) What I want to do is translate this ...
1
vote
1answer
83 views

Query and ordering on “key-value” table

I have a problem and my SQL is too basic to get over it. I have two tables: TABLE1 id (int) - (primary key) email (char) other fields... TABLE2 id (int) - (This is not the primary key nor is ...
0
votes
2answers
33 views

Nested Query, I think

I have a table with the following fields and example data: user_id meta_key meta_value ------- -------- ---------- '69' 'usertemplate' 'template1' '69' ...
0
votes
2answers
49 views

mysql if() with max()

I have a table named attproduct: there are three columns id, attribute, values. I have color and brand for each id in attribute column and corresponding values in value column SELECT id, MAX( IF( ...
0
votes
1answer
41 views

which is more efficent, INNER JOIN vs smaller UPDATE queries

say i have a whole bunch of tables using an EAV (Entity Attribute Value) structure, i can update 20 values for 1 entity using a whole lot of inner joins in the query which is more efficient, using ...
2
votes
2answers
159 views

Should I use EAV database design model or a lot of tables

I started a new application and now I am looking at two paths and don't know which is good way to continue. I am building something like eCommerce site. I have a categories and subcategories. The ...
0
votes
1answer
40 views

Ordering by top result of a nested order by

First off, I'm working with an EAV database so when I say entity, it's the same as a table. I have an "asset" entity and each asset has many "offers". Each offer has a price attribute. I want to ...
1
vote
1answer
109 views

MySQL User Defined Values - EAV vs Sharding with Many tables

I am currently in development of a multi-tenant system that as core functionality of the system allows the user to define custom types. So for example, they would define an Event, Account, Order, ...
2
votes
1answer
89 views

SQL EAV structure with Indexed views

I'm developing a general document workflow system with each document having different attributes but they share the same outline and goes through the same workflow. So instead of creating a table ...
1
vote
1answer
144 views

Searching for entities in a EAV structured data model

I'm trying to search in a database that uses an entity-attribute-value model to store objects. Could someone tell me what is wrong with the query below? SELECT * FROM object a INNER JOIN ...
-1
votes
1answer
43 views

Improving multi-and query [closed]

SELECT wposts.*, wpostmeta.* FROM wp_posts wposts, wp_postmeta wpostmeta, wp_postmeta wpostmeta2, wp_postmeta wpostmeta3 WHERE wposts.ID = wpostmeta.post_id AND wposts.ID = ...
0
votes
1answer
161 views

Magento Collections (Get Products by Type ID in specific order

I want to get a collection of products from magento in a specific order. Simple Products Configurable Products Grouped Products How would I add a filter that will retrieve the products in that ...
1
vote
1answer
166 views

How to compare various VARCHAR as numbers in Oracle

I have a table with various number formats like: 2 3.44189 4,1 -0.0022 9.9E+37 1.9E-12 these are measurements in a varchar2 column and to each measurement there is a specification with upper and ...
-3
votes
1answer
103 views

Key value pair in PostgreSQL [closed]

I need to save key value pairs in PostgreSQL database which will have some basic info regarding the record. After some googling on the topic I found out hstore is one of the options. But even after ...
-2
votes
2answers
55 views

SQL In an EAV model, does the length of the nvarchar matter?

I'm looking to set up a Entity-Attribute-Value table model, where I want the table to handle various data. I'd like to use nvarchar(max), but I'm worried that it may affect database performance (even ...
0
votes
2answers
78 views

Right mysql table design/relations in this scenario

I have this situation where i need suggestions on database tables design. BACKGROUND I am developing an application in PHP ( cakephp to be precise ). where we upload an xml file, it parses the file ...
1
vote
2answers
54 views

How to get id from rows with unique ids?

I have a table like this: id | customer_id | code ----------------------- 1 | 1 | A 2 | 1 | B 3 | 2 | A 4 | 2 | D 5 | 3 | B 6 | 3 | C ...
0
votes
2answers
80 views

How to query multiple rows from EAV table design?

I have a situation where I have to use EAV table design. I have the following two tables. Nodes id name structure_id 1 name 1 7 2 name 2 7 Attributes id node_id ...
1
vote
0answers
39 views

Is it possible to setup an EAV structure on PHP ActiveRecord?

What is the best way to link tables in an EAV table structure in PHP ActiveRecord so I can retrieve the entity and all of its attributes/values? The table structure is something like. person ...
2
votes
3answers
185 views

How make this eav query to make horizontal result

The case: tables: product: product_id|name | ------------------------ 1 |iphone 4 | 2 |gallaxy 2 | 3 |blackbery 6 | product_attribute: ...
0
votes
0answers
34 views

Migrating Data From a Regular Database Design to EAV

I am looking at 2 databases with patients' medical records. One is in an MS Access database with a regular design and the other is a MySQL database based on the EAV data model. We're looking to ...
0
votes
0answers
57 views

Modeling the storage of multiple data types that also have parent child relationships

I'm trying to design a MySQL database for a project I've started but I cannot figure out the best way to do it. Its an OOP system that contains different types of objects all of which need to be ...
2
votes
1answer
109 views

is magento sales eav

By checking sales module's config, there is sales_entity section as below <models> <sales> <class>Mage_Sales_Model</class> ...
0
votes
1answer
466 views

Create dropdown attribute containing country codes, magento

i have created a dropdown attribute in magento which shows a list of all countries. I did this by creating a dropdown attribute in the backend then I used SQLyog to change it's source model to ...
0
votes
2answers
160 views

How can I do a data type validation on a field that is dependent on another field?

I am having trouble performing data type validation which is dependent on another field. Most of the examples I found here are for making a field required or not based on a value of another field ...
0
votes
2answers
105 views

Are there more elegant ways of querying data based on values stored in attribute-value table?

I have an attribute-value table av that looks like this: | attribute | value | ~~~~~~~~~~~~~~~~~~~~~ | a1 | A1 | | b1 | BB1 | | b2 | BB2 | For simplicity, assume ...
3
votes
1answer
270 views

Allowing end users to dynamically add columns to a table

We are developing a .NET application with a SQL Server back-end. The client requests the ability to dynamically add custom attributes to entities after the application has been deployed. As suggested ...
0
votes
2answers
112 views

Create an attribute with image upload

I am new to magento and don't know from where to start. I'm thinking of an attribute with an image upload option for each attribute option. Basically i want to create an attribute color with its name ...
8
votes
4answers
453 views

SQL query getting exponentially slower

I have a query for a contact messaging system that is getting exponentially slow the more joins I do. The table structure is basically a contact table, and a contact field table. The query joins the ...
-1
votes
3answers
41 views

Avoid subquery in this mysql statement

I have a query as mentioned below: select a_value as itemname, ( select a_value from attributes where a_name = 'EAN' ) AS EAN from attributes where a_name = 'NAME'; Here I want 2 values from ...
0
votes
1answer
196 views

How can i join 2 product collections (Magento)

I have configurable products that are placed in categories. example: configurable product: shirt in category with id 6. this product has multiple simple products: green shirt with attribute 'size' ...
6
votes
1answer
209 views

Doctrine ORM on EAV Tables

I was planning on creating my application and use an ORM for the models, but the thing is, there's a part of the database which uses Entity-Attribute-Value Tables. I pretty liked Doctrine ORM but I ...
0
votes
1answer
62 views

Can I use a trigger to create a column?

As an alternative to anti-patterns like Entity-Attribute-Value or Key-Value Pair tables, is it possible to dynamically add columns to a data table via an INSERT trigger on a parameter table? Here ...
8
votes
2answers
862 views

How and where to modify Magento search query?

First of all, I found similar questions in SO but there is not any answer for them. So, the first part of the question is a little bit duplicated. I want to improve search results in Magento. Here is ...
0
votes
3answers
95 views

Find similar entities in EAV model

I need a query that returns "similar" products in my EAV table that: 1) share at least one similar attribute 2) have no attributes different to the product eg ProductID Attribute Value 1 ...
0
votes
2answers
862 views

Magento SQL query: Get all simple products that are “not visible individually”

I am looking to write an SQL query directly on the Magento database that gets all Simple products that have the visibility attribute of "not visible individually", for which the value is 1 i believe. ...
0
votes
1answer
48 views

Modelling asset information sanely [closed]

So we have a web app that among other things tracks various asset information. We support multiple clients and each client cares about different things for their assets (or may have different ...
0
votes
2answers
60 views

Transform an indexed Attribute-Value array into Associative array using PHP

I have a big array that contains rows as following: Array ( [0] => Array ( [attribute] => gender [value] => male ) [1] => Array ( ...
0
votes
0answers
67 views

django EAV filtering

I have the following models. class Category(MPTTModel): name = models.CharField(max_length=100, null=False, blank=False) parent = TreeForeignKey('self', null=True, blank=True, ...
0
votes
1answer
82 views

Designing an e-commerce application - complex EAV

I am trying to design a database for an ecommerce project. The current models are categories (which have a foreignkey to themselves) and products (which have a fk to a category). What I am trying to ...
0
votes
2answers
232 views

EAV - Get value using Linq to entities

In a data model like this (http://alanstorm.com/2009/img/magento-book/eav.png) I want to get the value from an EAV_Attribute using Linq to SQL. Assuming that an EAV_Attribute only exists in one ...
1
vote
1answer
67 views

SQL query to find articles having some properties and missing others

In SQLite, I want to write a SELECT query to find articles, that have certain properties+value or that does NOT have certain properties, where properties are in another table. This is how I've ...

1 2 3 4 5 7