entity-relationship Questions
4
Solved
I was simply wondering, how an ISA relationship in an ER diagram would translate into tables in a database.
Would there be 3 tables? One for person, one for student, and one for Teacher?
Or wo...
Galvanism asked 24/9, 2013 at 21:48
1
In the use of table relationship. What is the difference in the use of solid line and dotted line?
For Example
TABLE : MESSAGES /
TABLE : USERS
An User have 0 or Many Messages.
Solid line or Do...
Mitra asked 24/8, 2015 at 14:38
13
I have this error when I build my Web Service:
Error 3004: Problem in mapping
fragment starting at line 323: No
mapping specified for properties
JE_TRN_HS.JE_HDR_HSJE_HDR_KEY. Entity
i...
Retrogress asked 19/5, 2011 at 19:10
4
What do single line with an arrow mark in ER diagram represent?
Magnanimity asked 21/1, 2011 at 4:50
4
Solved
I started to study ER diagram when i browse through ER diagram tutorials i found something like figure 1 and i learned
Figure 1
And then i tried to create a sample ER Diagram in mysql workbench ...
Hazlip asked 11/5, 2016 at 10:1
3
Solved
Using Orcale SQL developer I want to map out a relationship between an employee and manager. However, a manager can only supervise a maximum of 3 employees.
Above I have an employee table with M...
Turgot asked 24/11, 2019 at 12:58
4
I want to generate an ER diagram of an SQL database using Microsoft SQL Server Management Studio (SMSS). However, I don’t know how to.
I found this technique online: Making ER Diagram from SQL Serv...
Batsheva asked 3/9, 2015 at 14:54
3
Solved
How can edges and nodes be styled using graphviz dot with doubled lines as shown the in the "LEGAL" and "TAX DISC" nodes of the following diagram?
Ciborium asked 2/6, 2011 at 20:22
5
Solved
I'm trying to draw an ER diagram describing the following:
-"Department" employs "Employees"
-Some "Employees" are "Special" and have more attributes
-Some of the "Employees" ("Special" and non ...
Typal asked 26/1, 2013 at 23:41
3
Solved
I am using Entity Framework and I ran into an odd build error.
I am building a forum and I set up a table in the database for "ignores" when people don't like each other they will ignore ...
Byronbyrum asked 27/1, 2011 at 20:40
3
Solved
I'm having trouble understanding the difference between partial keys/weak entities and foreign keys. I feel like an idiot for not being able to understand this stuff.
As I understand it:
Weak Ent...
Norvin asked 31/1, 2011 at 0:51
4
I've an entity Course and an entity User. There's a many-to-many relationship between course and user, since a course can have many users and a user can be enrolled in many courses. In both entitie...
Bremen asked 22/4, 2016 at 21:6
1
In order to create an ERD diagram for new projects I have been using Visual Studio's entity framework designer. Essentially I'm creating a "dummy project", adding entity framework via Nuget and dia...
Can asked 19/7, 2012 at 19:24
3
Solved
I saw a lot of questions here but no one fits with my problem. I'm trying to create an ER model scalable, and if I want to add more data don't break almost anything, so what I've trying to create i...
Abandoned asked 14/1, 2019 at 11:55
3
Im not quite sure how to read ternary relationships within a ER-Diagram.
Lets say this is the ternary relationship that is given.
What can I interpret out of that?
It says that you have to put y...
Fathometer asked 21/8, 2013 at 19:20
2
Solved
I have a JPA (Hibernate) entity:
@Entity class Transaction {
@ManyToOne
private Room room;
}
When I create a new Transaction, I know the ID of the Room that it should refer to (but don't hav...
Comintern asked 21/10, 2011 at 9:22
4
Solved
can any one say some way to convert SQL code to data diagram like ERD ? for som DBMS like MySQL or general SQL
Tamas asked 14/5, 2010 at 19:43
7
Solved
Imagine you have two entities, Player and Team, where players can be on multiple teams. In my data model, I have a table for each entity, and a join table to maintain the relationships. Hibernate i...
Begorra asked 12/6, 2011 at 20:43
2
Solved
Lets jump to an example that illustrates a table referencing multiple tables :
CREATE TABLE Corses
(
ID int PRIMARY KEY,
.....
)
CREATE TABLE Questions
(
ID int PRIMARY KEY,
.....
)
CREATE ...
Onesided asked 7/7, 2018 at 17:56
3
Solved
Another Hibernate question... :P
Using Hibernate's Annotations framework, I have a User entity. Each User can have a collection of friends: a Collection of other Users. However, I have not been ab...
Ulterior asked 1/11, 2009 at 1:33
4
I have a bidirectional one-to-many relationship with the following entity classes:
0 or 1 client <-> 0 or more product orders
When persisting the client entity I want the associated product or...
Reach asked 14/6, 2012 at 8:22
4
Solved
Is there any way to get an ER model of a database from the server that is connected to my MySQL Workbench?
Barbera asked 6/3, 2012 at 18:30
2
Solved
I have a specific problem with many to many relationship implementations in MongoDB.
I have collections of Songs and Artists(Millions document). Here the song can be sung
by Many Artists and an ar...
Turbo asked 7/4, 2018 at 19:12
3
I have a Person Class and Inventory can be two types: Sales and CustomerService.
Sales and CustomerService have their unique properties and Peron holds the common properties.
I want to be able to...
Daft asked 3/9, 2017 at 20:5
1
Solved
I have two entities with a foreign key relation: product and category.
@Entity(primaryKeys = "id")
public class Product {
public final long id;
@NonNull
public final String name;
@ForeignKey...
Spherical asked 3/1, 2018 at 13:33
© 2022 - 2024 — McMap. All rights reserved.