2
votes
1answer
21 views
which tools for drawing entity relationship diagram online and share with colleagues?
Hi all,
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!
2
votes
2answers
26 views
what’s the best way to search a social network by prioritizing a users relationships first?
I have a social network set up and via an api I want to search the entries. The database of the social network is mysql. I want the search to return results in the following form …
0
votes
1answer
23 views
Undelete an entity marked as EntityState.Delete?
Hello, instead of talking let me talk with code:
Dim Contact = Context.Contacts.Include("Phones")
Dim phone = Contact.Phones(0)
Contact.Remove(phone)
How do I refresh the contex …
0
votes
1answer
24 views
Delete a relationship?
What is the opposite of:
Dim ad As New Address
Person.AddressReference.Attach(ad)
I mean how do I delete the Person.Address? (both with deleting and without - meaning only d …
0
votes
2answers
44 views
iPhone UITableView populated by checked Table Cells. How?
I came upon this blog post the other day and literally have no idea how to implement it, logically.
Any ideas?
I was thinking it involves core data, with 'power' being another en …
1
vote
1answer
46 views
Entity Framework - Change Relationship Multiplicity
I have a table [User] and another table [Salesperson] in my database. [Salesperson] defines a unique UserID which maps to [User].UserID with a foreign key. When I generate the mode …
0
votes
1answer
42 views
JPA Entity Foreign Keys mapped to a Primary Key
Is it possible for a Primary Key of an nested Entity to be used as the Primary Key of the Nest Entity?
For Example:
If I had a Entity 'Staff' who has a primary key 'EID' and ha …
0
votes
3answers
68 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 wou …
1
vote
1answer
71 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 …
4
votes
6answers
138 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 …
0
votes
2answers
35 views
Database design for custom form builder (and storage of results)
I'm trying to implement a custom form builder, similar to those provided by Wufoo and Google.
While I've created a simple UI to create these custom forms with, my issues lie in th …
0
votes
0answers
28 views
Data Modeling for EAV
How are others using relational modeling tools to map a logical model or one in third normal form to a database that uses EAV?
1
vote
1answer
51 views
What kind of queries a website like stackoverflow use?
Hi,
I am learning mysql join queries. To pratice, I decided to make tables for a website like stackoverflow. I made three tables basically.
Question_Thread
thread_id
tit …
0
votes
1answer
26 views
How do I model a selected entity instance from a set of possible instances in Core Data?
I have two Core Data entities, say Account and House. Each account can have a list of houses and a house can only be in one account, so that's a regular one-to-many relationship wi …
21
votes
28answers
1k views
What are some of your most useful database standards?
I will start you off with some basic examples, but I really want to know what makes things go smoothly for you in the database aspect:
Table name matches Primary Key name and des …
