Tagged Questions

An entity-relationship model (ERM) is an abstract and conceptual representation of data

learn more… | top users | synonyms

44
votes
30answers
2k views

What are some of your most useful database standards?

I have some ideas, some that I have accumulated over time, but I really want to know what makes things go smoothly for you when modeling database: Table name matches Primary Key name and description ...
17
votes
5answers
14k views

Turn off constraints temporarily

I'm looking the way to temporarily turn off all DB's constraints (eg table relationships) I need to copy (using INSERTs) one DBs tables to another DB I know I can archive that by executing commands ...
14
votes
3answers
1k views

fluent nhibernate - many-to-many relationship mapping on same entity

I am having a problem trying to map out a many-to-many relationship , where both sides of the relationship reference the same entity. I am using Fluent NHibernate and NH3.1. Basically, the scenario ...
14
votes
2answers
1k views

EF4 code-first: defining object relationships, foreign keys

< RANT_MODE > EF code-first approach is meant to save lots of time but for the time being I've only seen toy examples and spent hours trying to understand how I can make it generate the db I want. ...
9
votes
4answers
6k views

EF 4.1 - Model Relationships

I'm trying to create a quick ASP.NET MVC 3 application using the RC version of EF 4.1. I have two models: public class Race { public int RaceId { get; set; } public string RaceName { get; ...
6
votes
2answers
190 views

Entity Framework - Keep loaded/included related objects after end using?

I am trying to have a query in a method that looks like this: Public Shared Function listParticipationsByTeamCount(ByVal count As Integer, ByVal challenge As Challenge) As List(Of Participation) ...
6
votes
1answer
443 views

How to attach an object that contains a n to n relation?

I have two tables that are linked n-n. And I have a method that takes one object and saves. public int Save(Table1 element) { using (var database = new Entities()) { if (element.ID == ...
6
votes
3answers
3k views

Core data many-to-many relationship - Predicate question

In my Core Data model I have two entities: List and Patient. List has an attribute called 'name'. A List can have any number of Patients and each Patient can belong to any number of different lists. ...
6
votes
1answer
3k views

which tools for drawing entity relationship diagram online and share with colleagues?

Is there any website that I can use a demo version to draw an entity relationship diagram and share it with my colleagues? Thank you!
6
votes
1answer
2k views

Hibernate many-to-many association with the same entity

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 able ...
6
votes
6answers
865 views

a layman's term for identifying relationship

There are couples of questions around asking for difference / explanation on identifying and non-identifying relationship in relationship database. My question is, can you think of a simpler term ...
6
votes
2answers
3k views

Getting Error 3007 when I add my Entity Model

I am getting an error 3007 when I add my entity model to my solution. I found these links: Good explination Short answer About this error: Error 1 Error 3007: Problem in Mapping Fragments ...
6
votes
5answers
548 views

MySQL: Finding rows that don't take part in a relationship

I have two tables: 'movies' and 'users'. There's an n:m relationship between those, describing what movies a user has seen. This is described with a table 'seen' Now i want to find out for a given ...
5
votes
5answers
159 views

How to model a database with many m:n relations on a table

I am currently setting up a database which has a large number of many-to-many relations. Every relationship was modeled via a link table. Example: A person has a number of jobs, jobs are fulfilled by ...
5
votes
2answers
109 views

Can someone explain to me how I would want to define this relationship in Core Data for iOS?

I two entities: patient and checkpoint. Patient has attributes such as DOB, name, ID, etc. Checkpoint has attributes such as dateRecorded, height, weight, etc. You probably get the idea- I want there ...
5
votes
1answer
1k views

How does Hibernate detect dirty state of an entity object?

Is it using some kind of byte codes modification to the original classes? Or, maybe Hibernate get the dirty state by compare the given object with previously persisted version? I'm having a problem ...
5
votes
1answer
320 views

Django: what is the difference (rel & field)

What is the difference between Django's models.ManyToManyField and models.ManyToManyRel? I'm confused about this stuff. Sultan
5
votes
1answer
112 views

How do I create two associated entities at one time with EF4 Code-First

So Say I have 2 entities, Post and PostHistory. Whenever I create or edit a post, I want to create an exact copy of it as PostHistory to log all changes made to a post. Say the post entity has the ...
5
votes
2answers
334 views

Difference between owned one to many relationship and owned one to many bidirectional relationship(Google App Engine Java Api)

what is the difference between owned one to many relationship and owned one to many bidirectional relationship i read the article below but i don't understand it. Article
5
votes
2answers
2k views

High-quality ERD generator for PostgresQL under Linux?

Background MySQL Workbench can produce appealing and high-quality ERDs such as: Research What PostgreSQL ERD tools are available that meet the requirements? The following are unsuitable: ...
5
votes
3answers
439 views

Standard database neutral XSD to describe a relational database schema

Is anyone aware of a vendor neutral XSD to describe a relational database schema? Our system needs to grab information about the structure of a database: Tables Columns and types Primary and ...
5
votes
8answers
1k views

What is the best way to represent a many-to-many relationship between records in a single SQL table?

I have a SQL table like so: Update: I'm changing the example table as the existing hierarchical nature of the original data (State, Cities, Schools) is overshadowing the fact that a simple ...
5
votes
5answers
204 views

Same fields in most tables

In a database prototype, I have a set of fields (like name, description, status) that are required in multiple, functionally different tables. These fields always have the same end user functionality ...
5
votes
5answers
8k views

Generate an E-R Diagram by reverse-engineering a database

Note: Originally this question was asked for PostgreSQL, however, the answer applies to almost any database which has a JDBC driver that can detect foreign-key associations. Querying PostgreSQL ...
4
votes
1answer
120 views

Using Entity Framework with historical data

I'm building a windows application in .Net 4.0 to create and organize electronics projects. The main purpose of the application is to record the vendor information for the electronics components ...
4
votes
2answers
366 views

How do you work with Entity relationship within Doctrine 2?

When you want to insert an Entity you do this: $user = new User(); $user->setEmail('john@doe.com'); $em->persist($user); $em->flush(); But what if I want to create an article which can ...
4
votes
4answers
548 views

Repository pattern: Implementation and lazy loading of model relationships

I have an application which deals with products and product categories. For each of these I have models defined using POCO. // Represents a product. class Product { public virtual int ID { get; ...
4
votes
1answer
346 views

Entity Framework Code First Mapping

I have two classes, the Group class has a many to many relationship with the User class (representing the groups a user belongs to) and then the group also has a relationship of one to many with the ...
4
votes
6answers
479 views

What's the point of a candidate key?

I'm fairly new to database management and this question never seems to be answered in more than one sentence. All other SO answers say "A candidate key is a minimal super key." That means nothing to ...
4
votes
3answers
479 views

Model relationships in ASP.NET MVC

I recently started evaluating ASP.NET MVC. While it is really easy and quick to create Controllers and Views for Models with only primitive properties (like shown in the starter videos from the ...
4
votes
1answer
184 views

How do I update with a newly-created detached entity using NHibernate?

Explanation: Let's say I have an object graph that's nested several levels deep and each entity has a bi-directional relationship with each other. A -> B -> C -> D -> E Or in other ...
4
votes
4answers
497 views

Does Hibernate support one-to-one associations as pkeys?

Can anyone tell me whether Hibernate supports associations as the pkey of an entity? I thought that this would be supported but I am having a lot of trouble getting any kind of mapping that represents ...
4
votes
1answer
431 views

Entity framework POCO

What does one loose by creating POCO using T4 templates in entity framework 4.0? Why is the default behavior when using entity framework 4.0 not to create POCO?
4
votes
2answers
885 views

Whats the best free ER-modelling tool?

whats the best free entity relationship modelling tool? I have an sql server 2008 database that I want to be modelled out with fields and foreign key contraints and I dont particulary like the one ...
4
votes
4answers
5k views

Does a free MySQL Relationship Diagram Generator Exist

Are there any free tools available for generating ERDs from an existing MySQL database? I've been given the requirement to generate such documentation for a legacy database and would prefer to not ...
4
votes
1answer
8k views

How to create an NSFetchRequest which filters Core Data objects based on attributes AND relationships?

I have a Core Data model setup like so: Blockbuster Entity To-Many relationship to DVD entities. DVD Entity title attribute (string) To-One relationship to a parent Blockbuster entity A single ...
4
votes
6answers
1k views

SQL Delete if the row is not affected by constraints

First note that I have seen this question:TSQL delete with an inner join I have a large table and several foreign key relations, each of which have data of a given age. We need to remove data older ...
4
votes
5answers
854 views

How do you model roles / relationships with Domain Driven Design in mind?

If I have three entities, Project, ProjectRole and Person, where a Person can be a member of different Projects and be in different Project Roles (such as "Project Lead", or "Project Member") - how ...
4
votes
3answers
4k views

CakePHP multi-model view

I am creating a website in CakePHP and I am kind of new on it. I couldn't find good resources on this matter, so there you go: I have a three table structure for registering users: Users, Addresses ...
3
votes
1answer
68 views

n:m Relation with additional Information in Hibernate

I got a problem with relations in Hibernate. Scenario: I got 2 Entities ‘Task’ and ‘Resource’. Every ‘Task’ can have multiple ‘Resource’s and every ‘Resource’ can have multiple ‘Task’s. So that the ...
3
votes
1answer
52 views

Java, Hibernate, CascadeTypes and 'garbage collecting' Orphans

What kind of cascade type can I use, and where, to have Hibernate automatically remove the Image when there are no more "Things" referring to it? (so sort of Garbagecollecting in Hibernate, basically) ...
3
votes
1answer
61 views

Can I set an entity relation with just the ID?

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 have ...
3
votes
1answer
173 views

XG-Transactions Fail in Google App Engine's Local Java Server — Run fine when deployed on Live GAE

I'm need to use XG (Cross group) transactions across some of my entity groups in Google App Engine. Unfortunately when I run any of these operations on my local Jetty (Eclipse) server, the App Engine ...
3
votes
1answer
60 views

What is the correct rails model? Using redundancy recommended?

In my rails application Company acts as the user model. A company can have many customers and many employees (carseller). There is a many to many relation between a carseller and a customer. There ...
3
votes
2answers
50 views

Does modeling entity-relationship using SQL Server built-in “Diagrams” have performance benefits on the execution of queries?

As database designing go I have never modeled the relationships of my tables by way of SQL Server diagrams, drawing how two or more tables are related using their primary and foreign keys. I am using ...
3
votes
2answers
359 views

EF4.1 (code first) - How to specify a composite relationship

In Linq to SQL I could specify a relationship that didn't have to depend on the foreign keys and pks existing in the database, useful for creating composite relationships like this: public class ...
3
votes
1answer
232 views

How to stop Self-tracking entity performing Add instead of Update

Apologies in advance for the length of this question! I have a data structure from which the following Enity Data Model has been created (tables/fields renamed and simplified for ease of ...
3
votes
2answers
498 views

EF Code first related entities context fail

Dunno how to name this properly. I have two entities in m:n relationship: Member and Role. public class Role { public int Id { get; set; } public string Title { get; set; } public ...
3
votes
1answer
98 views

Entity Graph generation for Google App Engine

What are the options for generating a graphical representation of my entities and their relationships in Google App Engine? I'm thinking about the lines of what DbVisualizer can do for relational ...
3
votes
4answers
220 views

Relationship between two Datacontext

I have two database. MasterData and ProductData. I store the Users and Employees in the MasterData and I store the Tasks in the ProdcutData. A Task entity has a User property. It shows which user ...

1 2 3 4 5 13