0
votes
1answer
8 views

TFS - Merge relationship - How to exclude ?

We have a case here where a developer creates a wrong branch. The branch should be: $\projectA\branch01\pg5Dev from $\projectA\main\pg5Dev\ but he creates a $\projectA\branch01\ from ...
1
vote
0answers
12 views

Relationship within a relationship in Access 2010 Web Database

I am trying to build a web database that I can run through Sharepoint. I read through the documentation for following the rules of web databases. I am running into trouble with relationships even ...
0
votes
1answer
26 views

database relationship scheme MySQL - profiles

I want to create an application, and before starting to program, I would like to hear your professional advice and recommendations on the basic model as I had it in mind. Sorry for the fact that I did ...
0
votes
0answers
21 views

ZendFramework2 Doctrine2 Forms

I'm setting up a ZendFramework2 + Doctrine2 stuff, everything is working good, I've setted up the create form, but what I need is to handle de relationship of my tables... For example, main table is ...
-1
votes
0answers
12 views

How to create traceable tables for relationship operations?

I have to create a table containing the relationships between two keys, and at the same time, within that same table, keep a historical record of each of these relationships and their changes. The ...
0
votes
1answer
23 views

Doctrine: Only load ID of relationship

Is it possible with Doctrine to say that I only want to get the ID of an relationship (n:1) loaded? The ID itself is a natural value and in most times I don't need the related entity.
1
vote
1answer
27 views

Can foreign keys be null?

I have a situation where accounts can have many phone numbers, but phone numbers can only be assigned to one account. This would normally be considered a one-to-many relationship, but the phone ...
0
votes
1answer
20 views

What would be a good way to store categorized data on a database? (ex. Facebook albums)

When dealing with data that has categories, such as videos + genres, and Albums + photos, what are ways to store those relationships in a database? For example, if I have a bunch of images (lets say ...
1
vote
1answer
34 views

Which database technology to store research papers with their relationship information? [closed]

I'm trying to decide on a architecture for my project, a web app analysing documents through analysis of the content (text analysis, similarity, subject area etc.) and also the relationships between ...
0
votes
1answer
31 views

An alternative to nested has many relationships

I am porting a very old legacy application from PHP to rails and came across some functionality that I am not sure how to implement in a 'proper' RoR way. Basically we have a signup form that ...
0
votes
1answer
43 views

Double Relationship in SQLalchemy

I got following problem in sqlalchemy. I made three different tables in sqlite, the first has no realtion, the second has a relation to the first and the third a relation to the second. So when I want ...
0
votes
1answer
23 views

How to handle many users and their customers in Ruby on Rails

Actually I know 2 ways to handle many users with their own customers data. This data should only be available to themself. On way would be to set the relation in the models. User model has_many ...
0
votes
2answers
51 views

Resolving many to many relationship

I have 3 tables that i am trying to figure out how to set the relationships. The database is to track survey questions and answers. A User can answer many questions, A question can have many ...
1
vote
2answers
73 views

How to create a relationship between records in a SQL database?

Let's say we have a "People" table: ID Name Surname Age 1 Thorvald Benjamin 32 2 Addison Impi 40 And we have a "Compatibility" table: Person1_ID Compatibility Person2_ID 1 ...
0
votes
1answer
66 views

how to create realationship between tables and views (sql server 2005) [closed]

I already have an existing huge database but the problem is there is no relationship exists between the table and views. is there any possible way or tool to aumatically create realtionships or whats ...
-6
votes
5answers
137 views

Make a relationship between tables , using C# [closed]

i have 2 talbes , City and Employee and this is the colums Citys : CityId CityName And Employees : EmployeeId EmployeeName EmployeeCity now i want to do , that when im change the CityName (In ...
0
votes
0answers
26 views

ManyToMany relationship by specific link table

I need to avoid @ManyToMany and @OneToMany JPA annotations by using specific link table. I have two entities: articles(id, title, text) and authors(id, login, password). One author can have multiple ...
1
vote
2answers
159 views

SQLAlchemy Using relationship()

I am using SQLAlchemy here, trying to make a couple tables and link them and am having problems implementing this. class Team(Base): __tablename__ = "teams" id = Column(Integer, ...
0
votes
2answers
79 views

How to select random ID in Mysql query

SELECT e.ent_seq, GROUP_CONCAT(DISTINCT kei.keb SEPARATOR'; ')AS kebs, GROUP_CONCAT(DISTINCT rei.reb SEPARATOR '; ') AS rebs, GROUP_CONCAT(DISTINCT sei.mean SEPARATOR '; ') ...
1
vote
2answers
146 views

MySql Select data is many to many Relationship in PHP

ENTRY (Table) ent_seq entry 100010 1 100020 2 100030 3 100040 4 K_ELE (Table) KID entry keb 1 1 食べる 2 2 日本 3 3 先生 R_ELE (Table) RID entry ...
0
votes
0answers
63 views

Circular relationships in database model

Hi I have a question about some circular relationships that I am facing with my database design and from what I read circular relationships are not desired. I read a few more similar questions but ...
0
votes
0answers
247 views

Difference between conceptual schema and relational schema

I am trying to distinguish between conceptual schema and relational schema. I have a project which requires ER Diagram as part of conceptual schema. However in the second part it requires the ER ...
0
votes
0answers
74 views

Database: Do entity relationships require attributes with foreign keys?

I started wondering weather or not relationships between entities required an attribute at the entity receiving the action (participation constraint) after I saw that Visio was including at least one ...
0
votes
1answer
169 views

JPA, flush and Entity Manager sync

I'm using Java EE, Netbeans and a facade session bean to implement the JPA layer (eclipselink). I've a two table for example: Garden (1) ---> Tree (n). (Script A) Now, I execute this snippet: ...
1
vote
1answer
171 views

Multivalued dependency example tricky

Employé3: {noEmp, ability, country} I have this little set of attributes and the following restrictions: Each employee may have some abilities in relation with a certain country. For instance, Alfred ...
0
votes
1answer
370 views

Laravel one-to-many relationship returns null

So here's what i have set up. I have two tables; users and todos. Every user can have multiple "todos". Here's what the tables look like: Users: Todos: And the models: class User extends ...
0
votes
1answer
660 views

Yii - showing treeview with more than two levels in dropdownlist

I have a database table with this structure id title parent_id is_parent parent_id is the id of the parent and I added is_parent as boolean to show the elements that are parents. I want to extract ...
2
votes
1answer
798 views

How to view database diagram in a Code First using localdb

I have a Code First project with Entity Framework 5.0.0 using localdb created in Visual Studio 2012 Ultimate. Although I can see my class relations in a Class Diagram, how to see a visual diagram of ...
0
votes
2answers
59 views

Create relationship table for one-row relationships?

I have the following structure: -- Table Users --- - User1 - User2 - User3 -- Table Roles --- - Role1 - Role2 - Role3 - Role4 Every user has to have one row, not more or less. Should i ...
2
votes
1answer
658 views

Laravel relationships in migrations?

I know you can define table relationships fairly easy with $this->belongs_to(), $this->has_many() etc, but what i don't understand is how the relationship table is created; the table that binds ...
0
votes
0answers
165 views

MySQL - Database for school work - Table relationships

My school told us that we need to make a database in MySQL. That database contains relationships and tables only nothing more and its only for study. So I'd like if anyone could confirm if what I did ...
1
vote
1answer
225 views

CodeIgniter - One-to-many DB relationship

I have some products and some images. There are more images and they have a p_id. How do I get more than one? It's for a gallery. My current query: $this->db->select('prod_id, prod_name, ...
0
votes
0answers
47 views

What's the actual table structure for storing a partially ordered set? (for storing hierarchy for rbac)

I just found out about hierarchical rbac and supposedly you store role hierarchy in a partially ordered set: Partially ordered set: But I couldn't find any working examples of the data structure ...
-2
votes
2answers
104 views

How to generate such relationship diagram?

Hi guys, I know it's a simple question. How can I generate such kind of database relationship diagram? This will helps me a lot in my application design. with 1 to n, n to n, 1 to 0 or 1 ...
1
vote
1answer
56 views

Circular DB relationship in Django

I have following model (campaigns/models.py) from django.db import models from django.contrib.auth.models import User class Module(models.Model): name = models.CharField(max_length=20) def ...
0
votes
2answers
122 views

Movie database relationship

I'm designing a database that stores movie related information. I'm stuck on a problem and can't seem to know how to solve it. So I'm creating a database that store movies, and for my movie table ...
2
votes
1answer
86 views

Graph: What are pros and cons of modelling bidirectional edges as two separate edges?

I am currently working on an application where we are basically building up a graph between "items". I think there are different kinds of links between those items, but I am struggeling right now to ...
1
vote
5answers
563 views

Advise on creating relationship in mysql with phpmyadmin

I was wondering if anyone could help me with this as I am novice and very confused I want to able to assign customer to user (1:M relationship) but I cant figure how to do this in mysql. What I would ...
0
votes
2answers
128 views

Ruby on Rails: Table relationship search

I'm still having trouble searching for technologies that are stored in a separate table, where there is a relationship between the technology table (technol) and Project table through a table called ...
2
votes
1answer
92 views

Complicated table relationships

There are 3 main entities: user, product and list of product. User can mark products as favorite. Only favorite products can be setted in product lists. Example 1: I mark milk and bread as favorite. ...
0
votes
1answer
109 views

Algorithm to quickly map out relationships among millions of objects

I have a relational database table with millions of rows, each is linked to hundreds of rows within this table. It a simple relationship but becomes problematic when there are millions of rows. Each ...
-1
votes
4answers
95 views

How to join tables [closed]

I have the following 3 tables: -- users -- id firstname lastname -- products -- id name price -- purchases -- user_id product_id How can i show with (select) which products user with id = 1 have ...
0
votes
2answers
56 views

Table relationship - multiple HABTM or multiple hasMany

I have a table files and it belongs to one either post, article, notion or paragrah. Maybe in the future, there will be more. What relationship do you suggest to use? Multiple HABTM tables, or ...
0
votes
2answers
108 views

ERROR MSG :You cannot add or change a record because a record is required in header_generator

Hey guys ive been looking online and seeing a lot of comments about cascading deletes, Relationships and enforcing referential Integrity. However i still cannot find my error where i have went wrong, ...
0
votes
2answers
163 views

Tables associations best practices in Rails?

Very new to Rails, have managed a few simple projects, but now stepping into more complex associations between tables and was hoping for some help. The scenario can best be related to a sports match. ...
0
votes
1answer
324 views

Can't get User from table Article using Doctrine

I have class User, and relation with class Article: /** * @ORM\OneToMany(targetEntity="Article", mappedBy="author", cascade={"persist"}) * @var ArrayCollection $articles */ protected $articles; ...
2
votes
3answers
158 views

How can I find the longest chain of relations in a database?

I have a large postgresql database of artists, songs and cover relations between the songs. I'd like to find the longest chain of cover relations in the database, similar to ...
2
votes
2answers
278 views

How to represent a categorized many-to-many database relationship where categories are specific to one side of the relationship

I'm working on building a database to manage project assignments, and the one part that's giving me particular trouble is the assignment of job titles to employees with for each project they are ...
0
votes
0answers
54 views

Rails Database Relationship Subject, Topic, Video

I tried reading other similar threads from SO but to no avail. I want to create a database relationship like this: a subject has many topics, which in turn has many videos. Here is my database ...
0
votes
1answer
518 views

Backbone: Using a form to save model, as well as model relationship into the database

I have been struggling with a form in one of my Backbone views. This form is supposed to save the information for a project model (e.g. project name, project description, project members). While the ...

1 2 3