1
vote
0answers
49 views

Database design decisions

I trying to create an efficient and scalable data model for an application that I am writing. I am coming to a common problem as far as the design goes, the example listed below exemplifies my problem ...
0
votes
2answers
79 views

Implementing an Aliases table (self-referencing many-to-many)

I am trying to model an Alias relationship. That is, several records in my person table may represent the same actual person. I don't care who the "Primary" person is. All Person records would ...
0
votes
1answer
46 views

Data Modeling : Item With Dimensions (One-to-Many)

I need suggestions on how to properly model an item record along with all of its corresponding dimensions. Consider the following: | ITEM_ID | ITEM_DESCRIPTION | ITEM_PRICE | SIZE | LENGTH | COLOR ...
0
votes
1answer
61 views

Triggers or T-SQL?

I am trying to make notification system for my website: This is the table structure notification ----------------- id (pk) userid notification_type (for complexity like notifications for pictures, ...
3
votes
1answer
62 views

How to query for distinct groups of entities which are joined via a self-referential many-to-many table?

Trying to figure out how to query for distinct groups of entities which are joined via a self-referential many-to-many table. Been poking at it all afternoon, thought I'd ask here to see if anyone ...
0
votes
2answers
70 views

Неlр tо dеsign dаtаbаsе tаblе struсturе

I'm writing application using relational database. I have entity of document that have to be persist in the database. The document is simply large table with many rows and columns: But problem is ...
5
votes
3answers
80 views

What is wrong with this data structure?

I have been asked to describe what it wrong with this data structure, and how I would improve it. Here is the data structure: Here is what I have so far: The Car price is set only if the car is ...
0
votes
2answers
72 views

About SQL and complexity

I've created a SQL table with a field X and a field DATE. I would like to compute the sum of X where DATE < d. I've two possibilities : Create a new field, "sum of X", which represents the sum of ...
0
votes
0answers
31 views

IBM Infosphere Data Architect or Data Modeler, possible to diff two logical- or physical models, or DDL:s?

We have one production SVN branch with our IBM DB2 physical and logical models, as well as their corresponding generated DDL scripts. This schema is in production. We then have another SVN branch ...
0
votes
0answers
84 views

How to design many to many complex relationships

I am designing a mysql database but I do not know exactly how to express some concepts. Basically, the key facts are: Each license_owner may allow different roles; Each corrispondence between role ...
-1
votes
3answers
58 views

Are there significant cons to deeply nested types in DB columns? [closed]

I'm trying to evaluate the pros and cons of structuring my data model in various ways, and I'd like to know if I'd be shooting myself in the foot by stuffing rather complex nested data types into ...
0
votes
2answers
55 views

SQL How to structure this particular db schema

I have two tables. User_types (1)individual (2)business (3)student Relationship_cat cat_id cat_name user_id user_type First with Relationship_cat, i want an entry to look like this ...
0
votes
1answer
91 views

Are these tables normalized? [closed]

Office: - office_id - office_name - city Employee - office_id - employee_id - username - password - department - designation - extension_no ConferenceHall ...
2
votes
2answers
144 views

problems arise when designing database for fashion online shop

I designed my database for customers, products, and orders... I came up with 5 tables: 1. customers customer_id email password first_name last_name registration_date 2. products product_id ...
0
votes
1answer
79 views

What are the pros and cons of mixing data with metadata?

Let's say I have a table such as: CREATE TABLE t1 ( col1 int, col2 int ); and a "metadata table" classifying these attributes: CREATE TABLE t2 ( attribute varchar, description varchar ); ...
-2
votes
3answers
110 views

Need advice on SQL philosophy

Before I go asking more questions about the coding, I'd like to first figure out the best method for me to follow for making my database. I'm running into a problem with how I should go about ...
0
votes
0answers
23 views

script-driven database modelling tool

I am looking for a database modelling tool (for PostgreSQL preferably) where the generation of the SQL DDL file can be accomplished in a headless / scripted way. That would allow me to place the ...
2
votes
3answers
464 views

News database design

I am making a news website but I want to let the user insert statuses from Facebook. The user can put the status anywhere in the news while writing it. I want to display the news as it's inserted. ...
0
votes
2answers
138 views

SQL Single Column Table

I have a model where a Shipment can have many Products through a product_shipments lookup table. The Shipment model also has a relationship where a shipment can have one to many bill_of_lading ...
0
votes
1answer
92 views

Product ID with different expiration date

Right now I'm creating an application to manage the inventory. We receive products very often and usually they have different expiration date or price. Example: RECEIPT PROVIDER PRODUCT ...
2
votes
2answers
142 views

store and query json in mysql table

I am trying to avoid anti-pattern in project where I must allow users to create, modify and delete table fields. So I am looking for storing JSON data in table. For example I have table products: ...
1
vote
1answer
389 views

Can only one foreign key reference a primary key?

When creating a table and a database in do the foreign keys need to be unique? For example Table: Manifest Manifest_Barcode - PK Vehicle_reg - FK weight description Table: Vehicle vechicle_reg - ...
2
votes
3answers
294 views

Foreign key on a non-unique index? (oracle)

I'm trying to create a constraint on table A to check if a set of records exists in a table B. I could use a foreign key, but the problem is that the data in the table B is non-unique. Is there a way ...
-3
votes
1answer
347 views

difference between Surrogate key,Synthetic Key, Artificial key [closed]

Is there any difference in Surrogate Key, Synthetic Key and Artificial Key ? I didn't get the exact difference.
-2
votes
5answers
129 views

Ignore repeated rows with SELECT statement

I have a table like below. One table for storing fruits and one for its type. create table fruits(fruit_id int, fruit_name VARCHAR(255)); create table type(fruit_id int, status VARCHAR(255)); ...
-1
votes
1answer
132 views

sql - table format for monthly wise [closed]

I have a data of 300 students monthly wise for an year please suggest me in which table format I have to store that data. I want to compare monthly wise data per each student.
1
vote
1answer
43 views

Model data and indices for my query patterns?

How should I model this data in MySql? I have data that looks like this: There are many ITEMS, some of which share a ITEMGROUP. Each ITEM has a list of 0-10 or 20 events. Each ITEM can be in either ...
1
vote
2answers
55 views

Query for status change first time

I have a table like below CREATE TABLE Customers_History(Row_Id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, Cust_Name VARCHAR(255), ...
2
votes
1answer
77 views

Relational Mapping of finite tree with instances

I have to represent the following structure in a relational database. There are five hierarchy levels: A, B, C, D. The relation between the hierarchy levels is always one to many, so A has many B, but ...
0
votes
2answers
99 views

Grails Data Modelling dilemma

I'm hoping someone can help me decide the best way to model this design for what sounds like should be a simple use case. I have a Client domain class. I have a Person command object and a Firm ...
0
votes
1answer
138 views

Parent and child entities in one to one relationships

The entity which participates in the 1:0+ relationship is the parent entity. Is that correct? Update:
1
vote
5answers
167 views

Need database design advise

I have a Questions table which looks like that as you see, there are 2 id rows that are nearly same: id, question_id. id - is autoincremented, unique id of each question, and question_id - is, ...
0
votes
2answers
75 views

What are some solutions for altering a table's column for storing multiple values?

We have a table: message ( `id` INT(11) NOT NULL AUTO_INCREMENT, `subject` VARCHAR(255) NOT NULL DEFAULT '', `message` TEXT NOT NULL, `attachment` VARCHAR(255) NULL DEFAULT NULL, `new` TINYINT(4) NOT ...
6
votes
1answer
94 views

How should I model data accuracy/confidence in a database?

Say I have a database holding timestamps. For every timestamp attribute I might add an accuracy attribute, stating the confidence interval, so the information being stored might be, for example, "1st ...
2
votes
3answers
1k views

MYSQL - One Column Referenced to Multiple Table

Can a single column in a table can be referenced to multiple tables?
2
votes
2answers
1k views

Database modeling for a weak entity

I have 2 tables in my database orders and orderHistory. ----------------- ----------------------- | orders | | orderHistory | ----------------- ...
0
votes
5answers
407 views

Does it make sense to have three primary keys, two of which are foreign keys, in one table?

I've created a database with three tables in it: Restaurant restaurant_id (autoincrement, PK) Owner owner_id (autoincrement, PK) restaurant_id (FK to Restaurant) Deal deal_id (autoincrement) ...
2
votes
1answer
664 views

How do I import data into a MySQL Model (EER)?

I'm new to EER diagrams and visual database modeling. I have a mySQL model (EER) that I've created that we forward engineer to create our databases with the exported SQL. When editing a table in ...
1
vote
3answers
100 views

Modeling Region or Country with single reference

I am developing a website for a dealer of wine and other alcoholic beverages. Obviously, each wine is made in a country that must be modeled in the Wine table. But many times, a Wine also has a Region ...
1
vote
0answers
141 views

How to create inheritance on ORACLE Data Modeler

I am not able to crate an entity inheritance in Oracle SQL Data Modeler (v3.1, the most recent one). Another issue: how to create a structured type? Is someone can help? I have tried with Google ...
1
vote
1answer
318 views

How would you create a clothing size db structure?

I need to design a structure for clothing sizes on an e-commerce site. We are using mysql For now, we have something like this: product(product_id, name, size_id) (12, 'formal shoes', 2) (224, ...
4
votes
4answers
3k views

Database design for a recursive relationship

Consider this case where I'm trying to model a database for a company: Entities: Employees, Managers, Departments. An Employee works in only 1 Department while a Department may have many Employees ...
2
votes
1answer
164 views

SQL Modeling Follower/Followed Relationships For Social Networking

I am building a social graph for my website. Users will create relationships (of the form follower/followed) where each party may independently follow the other. My users table looks like this: Users ...
0
votes
2answers
53 views

How to model sub sections in a relational database?

I'd like to model genres of games in a way such that genres can have sub-sections e.g. Genre | Sub Genre Action > Action Adventure Action > Shooter Simulation > Vehicle simulation ...
0
votes
1answer
373 views

Fact Table Design Suggestions

To make things simple I have a transactional system which logs instant messages between a doctor and patient. At the end each session between the doctor and patient the doctor fills out an outcome ...
3
votes
3answers
133 views

Keeping code modular when accessing a database

I've been working on the database for a very basic social networking site: all you can do is register for an account and send/accept friend requests. The server is written in Javascript (NodeJS) I ...
0
votes
1answer
118 views

Tag synonyms in DB schema with three columns

Assume you have the same data model as described here. Table: Item Columns: ItemID, Title, Content Table: Tag Columns: TagID, Title Table: ItemTag Columns: ItemID, TagID If you want to have tag ...
2
votes
1answer
100 views

MySQL Schema DBAdmins can you please look this over?

Database Schemas are not my strong point however I'm making a Recipe Schema and would like some input from experts on this before I move forward with my code. InnoDB with relations. Tabels ...
0
votes
1answer
84 views

ER data model (connecting 2 relations)

I just started to take data base managements and I want to know something. Can I make a connection between 2 relations? I mean there wont be any entities or atributes between them. Is it correct If I ...
0
votes
2answers
55 views

When to store data in a designated table or serialized? How to make the call?

I'm using a postgresql install to house my data. My Post model has an attribute called "selection" which currently stores data within a TEXT column in the form of: "x1,x2,x3,x4,x5..." When I need ...

1 2 3 4 5