-3
votes
0answers
17 views

What problems could arise with datadase indexing? [closed]

So I have come up with only a few things that would be an issue when having indexes on tables. The first would be that if too many indexes are created then it would make searching slow and ...
0
votes
1answer
130 views

How to find the relationship between tables in already existing database in MySQL Workbench?

I basically do not know how to see the relation between tables in my database in a nicely connected with arrows form.
1
vote
2answers
61 views

3 related tables with a relation table in between for 2 input and 1 output

I have 3 tables EVENTS with 2 columns : id , event-name RELATION with 2 columns : event_id, cat_id CATEGORY with 2 columns : id, cat_name here is my Data : [EVENT] id event-name ...
0
votes
1answer
77 views

Cloudfoundry relation “user” does not exist

I'm currently trying to deploy my application in cloudfoundry. My web is built on spring+postgre+hibernate. The problem I'm having is whenever I try to access the database, I'm having an error ...
1
vote
0answers
78 views

sorting data in a WPF datagrid bound to a related table

I have a WPF datagrid that is bound to a table. This table has a few relations set up so I can get more specific info about the field (Such as the city that a particular store ID is located in). I ...
3
votes
1answer
299 views

what is the advantage of relationships between tables in sql?

I made three tables. Table1=users.And the column names are userid (auto_increment) and username. Table2=hobbies. column names are hobbyid (auto_increment) and hobbyname. Table3=users_hobbies. column ...
0
votes
1answer
246 views

cakephp 2.1 view associated data across all add.ctp, edit.ctp, view.ctp

Calling all Cakephp Gurus! I have an "examinations" table, its consultation_id relates to "consulsations" table, which in turn its consulation_id relates to the "patients" table. Now, when I am in ...
0
votes
1answer
1k views

JPA Relation or Secondary Table

Hi I am reengineering one of my project with JPA which was initially on iBatis. public class Entity{ //ids and other stuff String locale; String text; } I was storing locale and text ...
0
votes
1answer
313 views

Groovy Map vs. Table Relations within Domain Classes - How to decribe & persist this?

In Grails/Gorm I am storing a physical site which holds objects at defined positions. The domain class would simply be: EXAMPLE A SITE DC sitename positionmap (1: dog, 2: cat, 3:foo, 4:bar, ... ...
0
votes
2answers
466 views

how to dump mysql table relations in PHP

I searched a lot but could not find a way to dump table relations like one-to-one, one-to-many vs in PHP. Is there a way to handle this issue in PHP? A result might be: array( 'tableA' => ...