Database design is the process of specifying the logical and/or physical parts of a database. The goal of database design is to make a representation of some "universe of discourse" - the types of facts, business rules and other requirements that the database is intended to model.

learn more… | top users | synonyms (3)

1
vote
2answers
20 views

3nf functional dependency in wiki's example

I read the wiki about the 3nf https://en.wikipedia.org/wiki/Third_normal_form it is the example that wiki give Tournament Winners Tournament Year Winner Winner Date of ...
0
votes
1answer
28 views

3nf but waste more storage space

I have a table which has three columns: account, idNumber, and position. The account and idNumber are unique. Here is my thought to analyze and I don't know whether it is right or not. account is ...
1
vote
1answer
20 views

Avoid circular dependency when storing revisions?

The following is a very simple illustration of two tables I have to store web pages: Page ---- * PageId CurrentRevisions -> PageRevisions.RevId PageRevisions ------------- * RevId PageId -> ...
0
votes
2answers
34 views

Database design: Multiple non-identifying relationships between two tables

I'm new to database design and have some uncertainties about how best to model this particular case. I'd appreciate any suggestions for this fairly simple scenario. When a production task begins, two ...
0
votes
1answer
54 views

is 2-3split B*tree really avoided in database design?

I read this in the SB-tree paper by Patrick E. O'Neil In what follows , we propose a basic definition for the SB-tree which avoids the overflow step and 2-3 split. In Section 4 of [17], it is ...
-1
votes
1answer
13 views

A lucky draw system [closed]

I am creating a lucky draw system whereby the participants' username will be stored in either a file or a database and later one of the username will be picked as the winner. Each product has many ...
0
votes
1answer
25 views

Database Design - Party Object Model and Relating Index's correctly [closed]

Im a developer by trade and I am currently dabbling in database design. I have been advised on StackOverflow to use the Party Model to achieve the ability to relate customers that may be people or ...
0
votes
0answers
7 views

Entity factorization and relationship in ER modeling

Please consider this case: An entity called "MeasuredData" has the following attributes : m_code m_start_time m_valeur unit conversion_coeffcient duration(secondes) calcul_type This entity can ...
0
votes
2answers
25 views

Incremental MySQL database design where future needs are unknown

I am using MySQL, InnoDB, and running it on Ubuntu 13.04. My general question is: If I don't know how my database is going to evolve or what my needs will eventually be, should I not worry about ...
0
votes
1answer
43 views

primary key to foreign key to foreign/primary

there are tables in database like tbl_items item_id item_batch item_name (primay key = item_id+item_batch) tbl_transaction(orders)_header ordre_id employe_id date ...
2
votes
1answer
22 views

How to maintain unique Id for records coming from two different databases?

I am feeling stuck while working on two different enterprise applications . From the first Application A1 and second Application A2, we used to send some documents to our print vendor which prints ...
0
votes
2answers
34 views

How to query “latest questions” effectively? [closed]

There are 3 entities in my application: user, tag, question. The relationship between these entities: user can select tags they are interested in tags can be attached to questions This is more or ...
1
vote
1answer
27 views

Is it well designed relational database just with one table?

I have MySQL database containing just one table, having 100 rows and 12 columns: ID (primary key), NAME, LATITUDE, LONGITUDE, TYPE, COUNTRY, CONTINENT, DESCRIPTION_PATH, STORY_PATH, PICTURE_PATH, ...
0
votes
1answer
30 views

Cassandra schema design optimization

My problem statement is :- I have a college , every college have some students , every student has some data(for eg student id , student name , class etc) related to him. The kind of questions ...
1
vote
0answers
26 views

Database Design for Time Series Data

I am trying to figure out how to store time series data for an ad platform I am working on. Basically I want to know some strategies/solutions for storing billions of rows of data so that I can ...
0
votes
0answers
36 views

Efficient database design for a hierarchical role based application

I am working on an application where I need to design a database(in MySQL). The application will have multiple users which will be categorized into several categories on the basis of their ...
0
votes
1answer
22 views

How to store text checksums for quick binary exists/does-not-exist lookups?

Consider an application which accepts arbitrary-length text input from users, similar to Twitter 'tweets' but up to 1 MiB in size. Due to the distributed nature of the application the same text input ...
1
vote
0answers
27 views

Recommendation for mySQL table structure (no code) [migrated]

I need some advice on how to layout the tables for a mySQL database. I will first describe what I am trying to do: I have a table for users. (This covers basic info for now) A user will select a ...
0
votes
1answer
46 views

Database design; Dynamically creating tables

I need to create an application which tracks Projects. So I have a number of projects each of which will have attributes like ID, name, and owner. Each project will have many tasks under it. Each task ...
0
votes
0answers
24 views

oracle report builder 6i - sql query code in Data Model

I'm Vijetha, I'm working on Reports 6i & am very new to it. I have the following query. In the front_end, in Reports Parameter, When the user clicks on the 'run' button, it will ask for ...
0
votes
0answers
20 views

Doctrine - One-To-One Bidirectional Relationship not allowed

i have a problem to transfer my databse design into Doctrine. At first some details: I get many football-related data from xml files and have to save it in my own database. One part of these data ...
0
votes
0answers
18 views

Are all matching indexes (indices) searched for a query? [migrated]

If I have multiple indexes that include a common attribute - will each index be searched upon a query involving this attribute? Or is only one index searched?
4
votes
2answers
39 views

Data modeling diagram notation, what is this?

What does this type of notation mean in a logical data model? There is three tables in this diagram and x inside "half moon". So, what is this "x inside half moon". I could not find this e.g. from ...
2
votes
5answers
71 views

Database Schema suggestions please

I have a scenario and i'm confused about how i can go about designing the database schema for it. In my software (php) there are companies and applications. companies need to have licenses to access ...
0
votes
2answers
27 views

How to pass an arbitrary number of parameters while adhering to REST principles

I have a database with 3 tables: product, category, and xref_product_category. My business logic permits a product to be associated with an arbitrary number of categories (bed, bath, kitchen, etc.). ...
1
vote
1answer
36 views

May a 6NF Table contain a foreign key?

Does a table satisfy 6NF when it's domain is a foreign key? E.g.: CREATE TABLE authors( author_id serial NOT NULL PRIMARY KEY ); -- other author attributes CREATE TABLE books( book_id ...
0
votes
2answers
43 views

Save geolocation as latitude/longitude or address/area name?

Suppose a service like Foursquare, I want to save the location of a check-in. Should I save this as latitude-longitude or the address/area name such as 123 Portmill St, NY 12345 or SoHo, NY. In the ...
0
votes
2answers
25 views

MySQL: Adding connections between people

I have a table "People" (ID, Name) 1, George 2, Nick 3, John 4, Paul Each customer can be connected to another customer (just for reference) For example George is connected with Paul So I create a ...
0
votes
1answer
32 views

MySQL: Do I need a foreign key?

I have a table called "PeopleCategory" and it includes PeopleCategoryID, Description I have two records added 1, Customers 2, Partners then I have a table "People" and it includes PeopleID, ...
0
votes
0answers
28 views

How to modeling 'step of doing something' in Entity-Relationship Model?

My company developed an software which every customer has an instance of it installed on our servers. Every time our software has a new release we need publish it to all customer instances. But this ...
0
votes
0answers
10 views

Multiple Sites with Multiple Clients Deployment Architecture

I am interested in knowing how does the architecture behind SaaS such as BigCommerce and Wix are designed. It seems that they have the following features: 1. Multiple clients managing different sites ...
0
votes
0answers
20 views

Storing dynamic forms and user response in sql. What is a good schema?

I want to allow one group of users of my website to create dynamic forms that will use input methods such as : Textbox Extended Textbox Dropdown Selection Radio Buttons Checkboxes Datepicker Matrix ...
0
votes
0answers
17 views

Wiki engine development guideline

I am not looking for an open source wiki engine. There are plenty of them of course. But is there a guideline or a book on development of a wiki engine from scratch. I'm interested in the ...
1
vote
1answer
39 views

Is This Mysql Database Normalization Form and Structure Design Correct?

I am trying to figure out what kind of normalization and structure to use for a database I am making. It is going to be a list of properties(building number street addresses, street names, cities, ...
0
votes
0answers
22 views

Is there a better way of handling access control logic instead of it being in the UI? [migrated]

Through most of my dev experience, I've never had to deal with much variety of access control architectures. They've all been pretty straight forward: Group [Create, Update, Delete] - User 1 ...
0
votes
0answers
23 views

[Database Design]:How to share resources among accounts?

Using google doc, I am able to share my documents with others. I wonder how they implement it underlying in terms of DB design? The simplest way I imagine is to use a joining table which keeps a ...
0
votes
1answer
23 views

How to make a record belong to all options of a field

I have a database of records called "services", each service has about 30 attributes and each service has an associated country as an attribute. The problem is some services are offered to ALL ...
-1
votes
1answer
57 views

How bad is a large number of small rows? [closed]

I inherited a table that is only 20 bytes wide, but has millions of rows. So far, it is not a performance problem. I am considering making a change that will greatly increase the number of rows in ...
0
votes
0answers
27 views

How to semplify this database schema and query?

This is my database schema: Post: -id -title -body -date User: -id -name -password Category: -id -title Post_Category: -id -id_post -id_category Post_User: -id -id_user -id_post Post_Like: -id ...
-2
votes
1answer
22 views

Best practice, Application architecture MySQL

i must design a system which unifies 4 applications, these applications share a lot of information (which at the current system, the information is duplicate in databases). My first idea was to use a ...
-1
votes
0answers
37 views

One database or multiple referencing one? [migrated]

Database design: one database or multiple databases, which is best? We have a database which has about a 100 or so tables, accessed by about five different applications. Five different applications ...
1
vote
2answers
31 views

Surrogate key 'preference' explanation

As I understand there is a war going on between purists of natural key and purists of surrogate key. In likes to this this post (there are more) people say 'natural key is bad for you, always use ...
0
votes
1answer
83 views

Database table design for best seller

I am currently doing a online shopping cart. I am having some problem when designing the database table. I am trying to create a best seller system which would be refresh for each month. Here are my ...
0
votes
1answer
44 views

Example of inheritance on a database (logical data model)

Here, there are a great answer about this question but i don't found clear examples about what's next, for example, queries (select). I'm going to describe an example and I want to know if i do ...
1
vote
1answer
44 views
+50

Couchdb architecture: Views or documents?

I'm trying to learn CouchDB by working through a simple RSS reader web application. The requirements are: Allow each user to import X feeds to his list User can add tags to each feed For each feed ...
0
votes
0answers
14 views

Database events log or history

I want to ask: - What is Database events log as a concept ? and using for what ? Any example of event log and what store inside it.
0
votes
0answers
25 views

ACID w/o a Crash Recovery Manager? [closed]

Is a database server ACID if it does not have crash recovery? I can't seem to find any conclusive white papers on it.
0
votes
0answers
45 views

Dynamic columns design for best possible matches query

I am new a new programmer and I've been looking all over the net for a good generic design for my problem but I can't seem to find a good one. Here's what I am trying to do: I have a table that ...
4
votes
3answers
174 views

BCNF with One Surrogate Key and Two Unique Keys

I am trying to understand what BCNF is and I have a relation like this: Student(id, ssn, email, name, surname) where id is a primary surrogate key with not null and auto increment properties, ssn ...
0
votes
1answer
27 views

Database design with a single entity with many different units

I'm new to database design and I am working on a project that requires the use of a single entity (medication) that could be tied to any number of patients and each patient could have a different ...

1 2 3 4 5 222