Tagged Questions
The database-relations tag has no wiki summary.
8
votes
7answers
3k views
Design 1-to-1 relationship DB tables?
A DB design question: when do you decide to use 1 to 1 relation tables?
One of the places I see this is, for example, when you have a User and UserProfile table, people split them instead of putting ...
7
votes
5answers
661 views
Language features to implement relational algebra
I've been trying to encode a relational algebra in Scala (which to my knowlege has one of the most advanced type systems) and just don't seem to find a way to get where I want.
As I'm not that ...
5
votes
3answers
164 views
MySQL: Getting Posts from Categories
I'm trying to learn MySQL so I have created a little blog system.
I have 3 tables in MySQL:
posts :
id | title
----------------
1 | Post Title 1
2 | Post Title 2
...
4
votes
4answers
521 views
How do you track record relations in NoSQL?
I am trying to figure out the equivalent of foreign keys and indexes in NoSQL KVP or Document databases. Since there are no pivotal tables (to add keys marking a relation between two objects) I am ...
3
votes
4answers
222 views
Are there any classification algorithms which target data with a one to many (1:n) relationship?
Has there been any research in the field of data-mining regarding classifying data which has a one to many relationship?
For example of a problem like this, say I am trying to predict which students ...
3
votes
3answers
189 views
mysql many to many relationship
Been reading the tutorial How to handle a Many-to-Many relationship with PHP and MySQL .
In this question I refer to the "Database schema" section which states the following rules:
This new table ...
2
votes
5answers
572 views
C# (WPF): Database Relationship Viewer
I would like to create a WPF application in C# that can show visually, in a user interface friendly way, the relationships between tables from a database chosen from the application user (MS SQL ...
1
vote
3answers
59 views
Restructure tables on an existing website, to store historical data?
I've been trying to find a match for my issue in existing questions, and I'll accept links as an answer and close my question if you have them.
What I'm trying to find is a way to restructure my ...
1
vote
2answers
116 views
Create T-SQL Constraint to prevent x amount of duplicate records in table?
In table A I have 2 columns:
ID (int, PK)
MaxUsers (int)
In table B I have 2 columns:
ItemID (int)
UserID (int)
The number of records in table A with matching ItemID's cannot exceed the MaxUsers ...
1
vote
1answer
84 views
Stock management of assemblies and its sub parts (relationships)
I have to track the stock of individual parts and kits (assemblies) and can't find a satisfactory way of doing this.
Sample bogus and hyper simplified database:
Table prod:
prodID 1
prodName Flux ...
1
vote
2answers
377 views
How to combine cascading updates/deletes between SQL Server and NHibernate?
I am writing an application with a hand-crafted domain model (classes) and a hand-crafted data model (tables/relationships), and letting NHibernate take care of the mapping.
Is it best to tell the ...
0
votes
2answers
56 views
Issue with Entity Framework/db relations
I have a class Article:
public class Article
{
public int Id { get; set; }
public string Text { get; set; }
public Title Title { get; set; }
}
And Title:
public class Title
{
...
0
votes
1answer
483 views
How to create nested objects in Rails3 using accepts_nested_attributes_for?
I cannot figure out how I can setup a form that will create a new Study while also creating the related StudySubject and the Facility. The user_id, facility_id and study_subject_id have to be ...
0
votes
3answers
66 views
Database design - doubt in mapping the relationships
I am having confusion in designing the database.
Its a Subscription based application :
One Subscription can have multiple display devices.
While Subscribing, the user will be asked to select one ...
0
votes
5answers
319 views
Foreign keys and NULL in mySQL
Can I have a column in my values table (value) referenced as a foreign key to knownValues table, and let it be NULL whenever needed, like in the example:
Table: values
product type value ...
0
votes
5answers
726 views
T-SQL Database Relationships PK FK Same Name?
Scenario
I have 3 database tables. One is for Images and the other two are People & Places. Since each person can have many images and each place can have many images, I want to have a ONE TO ...
0
votes
1answer
1k views
Finding extra columns in a many to many relationship table
I wish to persist some extra data in a many-to-many relationship by having some extra fields in the association table. For instance, I would like to keep track of what role a user has in a network, ...
0
votes
8answers
153 views
Database Design: Storing the primary key as a separate field in the same table
I have a table that must reference another record, but of the same table. Here's an example:
Customer
********
ID
ManagerID (the ID of another customer)
...
I have a bad feeling about doing this. ...
0
votes
5answers
170 views
Do I need to define a new primary key field for each table?
I have a few database tables that really only require a unique id that references another table e.g.
Customer Holiday
******** *******
ID (PK) ---> CustomerID (PK)
Forename From
...
0
votes
7answers
284 views
Conflicting desires in Database Design, with fields of two similar functions
Okay, so I'm making a table right now for "Box Items".
Now, a Box Item, depending on what it's being used for/the status of the item, may end up being related to a "Shipping" box or a "Returns" box.
...