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)

0
votes
0answers
8 views

Sample application with multitenant database

I am trying to build a sample multi-tenant application targeting 100 tenants , Can i please know are their any good multi-tenant sample database which includes design, schema and sample data
0
votes
0answers
5 views

multi columns or comma separated values in db

I am into a situation. I am into the world of db design even though have done basic crud operations. I have to design a db which have to hold a range of values... for e.g i have to store historical ...
1
vote
2answers
14 views

Extendable database schema for contacts (social)

I have an old application that needs upgrading. Doesn't everything now days? The existing DB schema consists of predefined fields like phone, fax, email. Obviously with the social explosion over the ...
1
vote
1answer
13 views

Cycle in ER diagram: Bad design? BCNF?

I want to model linguistic syntax trees in my database. In my design, a syntax tree consists of inner nodes and terminal nodes; both types of nodes are weak entity types that are identified by the ...
-4
votes
0answers
22 views

online examination portal in java: what would be an efficient approach to store the questions? [closed]

I am trying to develop an online examination portal in java(I am using mysql as DB). In my application there will be an admin tool where the admin can load test papers(that would be an XML file). Now ...
0
votes
1answer
25 views

Data storage format: byte array alternatives?

I have a desktop app that has the concept of an entity called Field. ----------------------- | Id | FieldName | ----------------------- | 1 | "Field 1" | ----------------------- | 2 ...
0
votes
0answers
19 views

Lookups of lookup fields (and how to avoid them)

I'm trying to create a relational database for a data dictionary within Access. The data comes from many different sources with many different data types and definitions for the same name. The issue ...
0
votes
1answer
25 views

The logical model and the domain model

I've often used the logical model and the domain model interchangeably, but I came across this in Wikipedia: "The term 'Logical Data Model' is sometimes used as a synonym of 'Domain Model' or as an ...
1
vote
1answer
49 views

Should I let users create tables within the database or create views?

I'm using cakephp and I need to let users design their own forms (this will only be done once during a setup wizard stage, with about 12 forms created in real use). Tables that always will be needed, ...
0
votes
1answer
42 views

does Unique constraint on multiple columns has performance issues -Oracle

I am using Oracle database and I have a table for customers records and want to put a Unique key constraint on multiple varchar2 columns. like CUST_ID (Number), CUST_Name(varchar2), ...
0
votes
0answers
8 views

Is there a way to fix the database designer in Visual Studio 2012?

Im using a SQL Express 2008 R2 database, editing it from the database designer built into Visual Studio 2012. Creating a table and adding relationships is fine, no issues, but when I try to edit a ...
0
votes
1answer
23 views

Replicating data table structure vs using one structure

Scenario:- A company will have many branches and there will be many companies registering to the system. The table structure for a branch will be the same for all companies. Question:- Is it ...
0
votes
1answer
37 views

My Database Design Flaw…Explain a better way PLEASE… ((Correct Way))

First lets start off with I am writing a program in VB.net and have a database set up and everything works fine as of now. The program is user based and requires the user to log into the program and ...
0
votes
1answer
19 views

Having data stored across tables representing individual data types - Why is it wrong?

Say I have lots of time to waste and decide to make a database where information is not stored as entities but in separate inter-related tables representing INT,VARCHAR,DATE,TEXT, etc types. It would ...
1
vote
1answer
33 views

Entity Framework / Database - Archiving Foreign Key Records

I've developed an application for a client with the following relationship: A SalesOrder has a foreign key relationship to a Customer (one-to-one). The client now wants to be able to delete ...
1
vote
1answer
53 views

Redis data structure design for sorting time-based values

I'm performing some analysis on a data stream and publishing the results on a Redis channel. Consumers subscribe to these channels and get real-time data feeds. All historical data analysis results ...
-4
votes
0answers
22 views

Estimate size of data warehouse [closed]

A retail stores chain have stored their sales information in the form of a star schema as follows Item Dimension : item_key(int), item_name(30 char), brand(10 char), type(1 char),supplier_type(1 ...
0
votes
0answers
31 views

Database Design for conditional detail table [migrated]

I have expense management system for monthly expenses. Expenses are of two types. one time monthly expenses and daily expenses for each day of month. I have created the following tables setupExpenses ...
0
votes
1answer
26 views

When designing for tablets what should be the res folder structure?

I am trying to make an application for tablet only . Can any one specify what should be the exact folder structure of res (resource folder ) for tablets
0
votes
1answer
43 views

Changes (subtle or not) in a database schema that break applications [closed]

Besides the obvious, removing a column, renaming a column/table, dropping a table/schema what would be a list of changes in a database schema that could potentially break applications using it? Would ...
0
votes
1answer
17 views

RSS 2 specification for item attributes

Do attributes in an RSS feed have a character limit? I have looked at the specification and there is no mention of it. I am making a database table to hold the contents of an item and deciding on what ...
1
vote
2answers
19 views

Naming Conventions for Multivariable Dependency Tables MySQL

Conventions for normalized databases rule that the best practice for dealing with multivariable dependencies is spinning them off into their own table with two columns. One column is the primary key ...
1
vote
1answer
19 views

Expression Engine Channels in CodeIgniter?

I need to build an application wherein the admin must be able to define forms for data entry. The data to be entered is unknown to me. But the system will need to be able to support all the possible ...
0
votes
1answer
56 views

Database Design Optimization [closed]

This one is sort of a homework question, in that it is related to a question I have for my introductory databases course but is not the question itself. I am studying out of Phillip Pratt's "A Guide ...
0
votes
4answers
103 views

Problems on using same field names in different tables, specially ID

I am developing a big data base, and from this situation I decided to think always twice at least on making decisions about the table and field layouts. My highest concern is about the primary keys. ...
3
votes
1answer
30 views

Emulate MyISAM's composite primary key with an autoincrement behavior in InnoDB

In MySQL, if you have a MyISAM table that looks something like: CREATE TABLE `table1` ( `col1` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `col2` INT(10) UNSIGNED NOT NULL, PRIMARY KEY (`col2`, `col1`) ...
0
votes
1answer
22 views

PHP - MySql: fetch item from three tables and order by timestamp

I am wondering what is the best way to fetch different item details from three different tables and ORDER according to their timestamp display on home page Suppose : Table 1 ...
0
votes
2answers
28 views

Foreign key to the same table in EF - Getting an error

Basically I got the following table: [Table("UserProfile")] public class UserProfile { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int UserId { get; ...
0
votes
0answers
18 views

sqlmembership provider allow users to run an methot or not depends on his role

using the sqlmembership provider,how can I allow or dont allow to run a method ,for example for admin user allowe edit and delete,for other user ,only allow to see data.or allow admin users to see ...
2
votes
3answers
45 views

MYSQL- Best design to store multiple emails/addresses for one user

I checked this question here but unfortunately the link to the diagram in not working so I'm stuck. I am trying to have multiple emails for one user (work, business, personal, etc) and I'm not sure ...
0
votes
1answer
30 views

MYSQL table in table

I want to make a database that tracks the activity of members, so adds all the stuff they do. But to do that I think that I need a nested table, as the first would contain the user and his info and ...
0
votes
1answer
47 views

I can't decide how to structure my table

I'm building a website where basically there will be forms with multiple fields, to make user input really specific, instead of it all coming down in a single paragraph. So I'm thinking maybe I'll ...
0
votes
1answer
21 views

two of the same foreign key from the same table into another table?

Is it ok to have two columns in a table that can be a foreign key from the same table? For example: i have an 'address' table with columns: id, street, city_id, state, country (or id, street, ...
0
votes
0answers
8 views

How to capture Username from openid?

I'm trying to use openid with mvc/razor application. I use single table for both registration(login created in the website) and login with openid. What are the fields does a openid return when I Login ...
1
vote
1answer
36 views

How to implement referential integrity here?

I got the following structure - which I admit is not ideal, but so much is built on that, tat I want to minimize changes. I am not sure about how to properly implement referential integrity between ...
2
votes
2answers
95 views

Stores millions of daily IP address logs

We have one click tracking system where i am tracking IP address of each request. Each day we are getting millions of hits. And for each request and storing IP address as 1 row in MySQL We also ...
-2
votes
1answer
30 views

database creation using c programming [closed]

HI I want to create database using c programming. I want to create the employee database system and want to update it dynamically. please guide me how can I go ahead. this I have to do it for ...
0
votes
1answer
31 views

fact table : colums with same data and different meaning

I have fact table that contain data about foreign trade(import/export of goods), and i have 2 columns, named : coutryFrom and countryTo, the coutryFrom is the country from where the goods is comming ...
0
votes
0answers
10 views

ruby datamapper breakdown of Serial vs String property for key

Should every table have a Serial id? When would you need one, when wouldnt you? (associations, performance, etc?) YouTube identifies videos with a key like "ttpYdIodMWc". I want something similar, ...
0
votes
1answer
71 views

Adding columns to database table dynamically?

I'm using Java EE, Oracle db and JPA: I need to create a common table in oracle. It can be edited using an ui, for example: id|tax1|tax2|tax3 ------------------ 1 | 5 | 16| 9 2 | 7 | 1 | 8 ...
0
votes
1answer
29 views

Composite primary key in dimension table

I have a dimension table with composite primary key ex : Operateur: centre registreDuCommerce libelleCentre LibelleRegistreduCommerce The primary key is: centre, registreDuCommerce And the fact ...
2
votes
4answers
70 views

Dynamic input to database

I'm working on an app that lets a user create projects custom to the users needs, the project is basically a form that can be submitted by another user. I want to allow the user to dynamically create ...
0
votes
0answers
38 views

How define relational database to a specific application

Evening, I have a little problem to create my data model. To be simple in my web program : There are servers, such as mumble, game server, etc.. (I suppose a table) There are commands for a server ...
0
votes
2answers
26 views

How to get a way to distinguish the queries with union

I am creating a blog in php/mysql where the user can post text or image. If it's a text, then it has an url like this: www.example.com/text.php?id=... If it's a image, then it has an url like this: ...
0
votes
1answer
62 views

Optimizing National ZIP+4 database for fast address lookup

I've just obtained a large set of text files (8 GB total) containing all of the address ranges within the U.S. The set consists of: 929 ZIP+4 files, each containing postal addresses of unique ...
0
votes
2answers
34 views

MDB data type that allows decimal points in numbers?

What data types in MDB (MS Access) database format will allow decimal points in numbers?
1
vote
0answers
35 views

Testing table performance normalized vs denormalized

we are planning to adjust your DB-structure to a more flexible layout. For each person a set of values is stored, which differs from client to client (that means, the clients of our clients). We want ...
-1
votes
1answer
37 views

my sql multiple category-subcategory-subcategory

category subcategory subcategory jewelry body nose ring,arm ring,ear ring men ring,ear ring I have multiple category->subcategory->subcategory so how will be the ...
0
votes
0answers
19 views

How to infer relationships and cardinality from a database when generating code from the tables?

I'm working on generating code (models) from my database. I'm not sure how to, if possible, setup my database to create a relationship including cardinality. Is this something that can be done, or am ...
1
vote
2answers
35 views

mysql/RoR database design

Is it ok for a table to have two of the same foreign keys as columns? I.e I have two tables, one is Country, the other is City. In the Country table: COUNTRY -------------- id name capitalcity ...

1 2 3 4 5 227