Entity Relationship Diagram (ERD) or Entity Relationship Nodel is a visual representation of the organization of data within databases or information systems

learn more… | top users | synonyms

9
votes
2answers
22 views

How to identify a strong vs weak relationship on ERD?

A dashed line means that the relationship is strong, whereas a solid line means that the relationship is weak. On the following diagram how do we decide that the relationship between the Room and ...
0
votes
1answer
21 views

Trouble designing ERD for monthly reports containing several zip codes

This is an ERD for a food bank system. I'm unsure how to handle zip codes at the moment. I'm not sure on necro policy here, but here's my old question just in case: Need help designing ERD for food ...
0
votes
1answer
32 views

Differences between EER and UML

I'm putting together a visual representation of a database I designed. I've downloaded MySQL workbench and can create a EER diagram. What's the difference between this and a UML diagram? Also, ...
0
votes
2answers
44 views

ID Refer to Table Rather than Column within Table

Multiple Voting Table Schema: Single Voting Table Schema: Businesses, Products, and Comments can all be voted on. For the first obvious solution, I chose to create an association entity for each of ...
1
vote
1answer
27 views

Applications to design ERD Diagrams for Databases

I am looking for applications (with preference to Linux based, but can work with windows based too), that allow for ERD design of a database on conceptual level. This is for assignments I have at ...
1
vote
0answers
19 views

UML Data Modeller which generates SQL?

I have been using ERD programs for a while now to: generate to, or reverse engineer from, my database. However I recently learned the UML syntax equivalent, and am looking for an "IDE" that can ...
0
votes
0answers
36 views

Design in ERD and export XML files for metadata

In order to isolate data model changes from the database schema (and resulting schema changes), i've implemented a metadata model the uses XML files to describe the underlying scientific data being ...
0
votes
1answer
27 views

Entity Class for ERD

public class Table{ private String column[]; private String dataType[]; private boolean PK[]; private boolean NN[]; private int count; public Table() { count =0; } public void AddColumn(String ...
0
votes
1answer
156 views

Visio Foreign Key

I am designing a Entity relationship diagram using Microsoft Visio 2010 and using Database Model Diagram. I have 2 tables, Student table which has Student ID (Primary key) and Course ID (should be ...
-1
votes
1answer
60 views

Airline database prototype

I am designing an airline database( the outline of one anyway) for an assignment and seem to be running around in circles. Three tables are concerned. Customer Booking_Reference Flight ...
0
votes
1answer
29 views

Oracle Designer 9i - Export layout information of ERD

We have a repository of hundreds of Entity Relationship Diagrams with a specific layout and we have to migrate them to Oracle Data Modeler including layout information. Actually we have to redraw ...
0
votes
0answers
84 views

ERD and Normalization help required

I am planning to create an Online Service Desk which allows users within a company to log incidents/tickets when they have an IT problem. Attached is an image of an ERD I plan to implement. The ...
0
votes
0answers
103 views

Database Unary Relationships

I'm trying to model something like pokemon where by a pokemon for example eVe evolves into Vaporion, Flarion Voltion etc. How do i represent that an eve evolves into one of it's subclasses Vaporion, ...
0
votes
1answer
77 views

Failed: RuntimeError: Saving diagram failed! when running rake erd command

I am trying to rake erd to generate diagrams for models in my rails application. I am on windows 7 and graphviz is installed When I run rake erd OR rake erd filetype=dot I am getting following ...
0
votes
0answers
40 views

SQL Primary Key and Foreign Key connection

http://i.stack.imgur.com/lFHuA.jpg Can any one help how to connect the (Supervisor with Person) ?? with Primary Key and Foreign Key = Foreign key _ = Primary key
0
votes
2answers
69 views

SQL another Normalization way [closed]

I just try to do the task and stuck on normalization. ( This should be LOGICAL ERD ) Is it any more possible way for normalization up here? I just stuck with it. Sorry I just misses in group ...
1
vote
0answers
35 views

DMS query about Interface

My project is Document Management System in which I have a login form so users can login to system. When a user logs in first his/her profile creates Date Full Name User type (e.g. single user) ...
0
votes
1answer
35 views

Different Users role , each in one table

in my database i have admins , merchants and drivers . All of them share many attributes like name/email/phone/credentials..etc So , the way i designed my database is a tabled called "users" and ...
0
votes
0answers
86 views

ERD in Netbeans 7.3

How can I create ERD (entity relationship diagram) in Netbeans ? I installed ERD plugin, but dont know how to use in, where to find this function. I need to create ERD and then generate SQL script. ...
3
votes
3answers
55 views

How to represent interchangeable columns

I'm not quite sure how to phrase this, but is there a good way to implement a table where the columns are essentially interchangeable? Example: you have a Users model and want to allow two Users to ...
2
votes
1answer
177 views

Database Design/ERD - Quiz Engine

I've been using this site as a great resource since I started at school - but I've never had a problem this specific before and I was hoping for a bit of help. I was never the best when it came to ...
0
votes
0answers
15 views

How do I specify uniqueness in many-to-many?

I have a many-to-many relationship, and I trying to diagram it. The problem is that if I turn this into a one-to-many and a many-to-one, it seems that I will allow duplicate pairs in my intermediate ...
0
votes
1answer
94 views

Understanding Weak Entities and Weak Relationships

If I have the following ERD: ------ |Inv | --------- 1 | <<contains>> | m -------- -------- --------- ||Line || 1 --- <<has a>> ...
0
votes
0answers
124 views

visio reverse engineer “show related tables” is not working

I am Using Visio 2007 trying to generate ERD for an Oracle DB. The reverse engineering worked fine, and was able to drag tables on the screen (from Tables and views) but when I click show related ...
0
votes
0answers
59 views

Can I please get some help verifying my db design? [closed]

We are building request app, much like workflow where employees can log into the system and request VPN access company's firewall. The spec is that an employee completes the request form and submits. ...
0
votes
2answers
157 views

Avoid Circular Dependency

I am developing a travel management application. The design in question is something like following : Each person in a tour is designated as a Traveler. Each Traveler has a Passport. Now, a Traveler ...
0
votes
0answers
65 views

How do I save an ERD as a .txp file in Toad for Oracle?

How do I save an ERD in Toad for Oracle as a .txp file or any other format that I can open in Toad Data Modeler? I have tried to find a way to open the .erx files I have in TDM but it doesn't work ...
0
votes
0answers
36 views

visio erd cardinality

Not sure if this is the right place to be asking about visio. But Im trying to create an ERD in visio 2010. The problem im having is changing the relationship cardinality on both sides of the ...
0
votes
2answers
160 views

er diagram showing relations between attributes

I'm looking for free tool for generating ER diagram. I now there are a lot of stuff I can find them in google, but I need something specific and can't it find. The tool should generate ER diagrams ...
0
votes
2answers
96 views

Database Diagram (ERD) Final Table

Is this Showroom table correct? I want to be able to see this data: I'm just not sure how to reference MakeName, ModelName and Price in the showroom table, is it right as it is or do I need to ...
0
votes
2answers
114 views

How to link these database items? (ERD)

just need a bit of help as to how to link a table to my database ERD. I have two tables, Make and Model that store information about Car Makes (Ford,VW) and Model which stores information of Car ...
0
votes
1answer
185 views

Using SQL to create tables and relationships from ERD

I am working on an assignment for class where I have to take an ERD and create SQL statements to capture the relations. I am asking if the SQL statements I have created capture these relationships. ...
0
votes
3answers
138 views

ERD table design

I'm developing a website and need to create an ERD for the website. I've never created one before but will be using MySQL to design it once I figure out the tables necessary. All I am asking for is ...
0
votes
0answers
49 views

Auto Aftermarket Database Part Equivalence

For my latest project I'm required to construct a database of equivalent aftermarket parts for an automotive spare parts retailer, as well as use them in an existing model. The problem, or my ...
0
votes
0answers
75 views

Foreign keys in toad ERD

I have a very large ERD that I need to find a way to make the connection lines for foriegn keys bend at 90 degree angles so I can have them go around the other obects rather than trough them. Is there ...
0
votes
1answer
193 views

Relational Database: Normalization and ERD

I am in great fear that this question is not suitable for stackoverflow as it's too specific to my needs and not general enough for the rest of the users, but I thought I'd ask anyway. If this is ...
0
votes
3answers
82 views

Can I share a parent table's primary key as a foreign key between two or more child tables?

I have a database named tv_shows which is structured as: tv_shows(tv_show_id, tv_show_title, tv_show_desc, network, status) seasons(season_id, tv_show_id, season_no, season desc) ...
0
votes
1answer
66 views

Defining a lot of table partition in MySQL Workbench

I've been defining exactly 121 table partitions on 10 MySQL tables using MySQL Workbench. Each of those tables are used for logging use and its partitions are divided by every month from Jan 1st, 2013 ...
0
votes
1answer
137 views

DB Design for table with multiple relationship

I have five tables. They are as follows: customer_type customer region project car This is the explanation of the relationships between the tables. For the first table namely customer_type the ...
0
votes
1answer
48 views

Where can I find the ERD of OpenStreetMap database?

I need the Entity Relationship Diagram for OpenStreetMap. Or something that could make it very easy for me to get accustomed to the design of the OSM database. Thanks on advance
0
votes
1answer
282 views

SQL Server Bulk Insert with FOREIGN KEY parameter (not existant in txt file, ERDs included)

Okay so I have a table ERD designed like so... for regular bulk inserts And a tab delimited \t text file with information about each customer (consists of about 100,000+ records). # columnA ...
0
votes
3answers
221 views

ERD Modelling tool with Doctrine Support

I'm looking for a free or paid software application that I can use for ER modelling. Since I mostly develop applications using Symfony2/Doctrine, does anyone know about software that has Doctrine ...
0
votes
0answers
26 views

Modeling databases

I want to make the ER of a System. In my system, I have two databases in two different servers. The user is saved in the first one, and every time he interacts with the system, he saves something in ...
1
vote
2answers
63 views

mysql relationships, make them optional?

Hello I have the following mysql relationship, As you can see the companies table has a 1:n relationship withe the members table. However this seems to implicit, meaning that when I try and save a ...
0
votes
1answer
79 views

ERD with multiple databases

I want to know, how to design ERD diagrams of two different databases, that have a very strong logical connection between them. More specifically, I like to model the databases of an evoting system. ...
0
votes
1answer
132 views

Can MySQL Workbench Forward Engineer (Generate DDL) for Relational Databases other than MySQL (such as MS SQL Server, PostGreSQL, Oracle, etc.)

I was under the impression that MySQL Workbench could be used to generate DDL for relational databases other than MySQL. This question from 2010 says no, the only way to do it is to generate DDL for ...
15
votes
5answers
389 views

SQL - Query - max(count())

I'm studying for my Database Systems Exam (tomorrow) and I'm having trouble in exercises where I'm asked to write queries. Here's an example: I am being asked to write a query to answer the ...
2
votes
3answers
164 views

What could go wrong if one ignored weak entities during database modelling?

I never use weak entities when I'm doing database modelling and things seems fine till now. I usually ignored the whole issue by giving each entity a primary (auto generated) key. However, I came ...
1
vote
1answer
24 views

QUERIES about relationship in ERD

Is it possible to have two entities linking to a weak entity?? If yes, how's the example like.
3
votes
2answers
100 views

Need help designing ERD for food bank

This is my first project outside of school so I'm rusty and lacking practice. I want to create a database but I'm not sure if I'm doing ok so far. I need a little help with the reports table. The ...

1 2 3 4 5 6