Tagged Questions
-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
24 views
TYPO3 mm-Query giving me no output and no error
I've tried to output some data from my two linked tables and had a look at all examples I could find, but I'm still not getting any results. (Note: I've tried exec_SELECTquery on either table and it ...
0
votes
0answers
31 views
Decomposing a relation into 3NF, how do separate the relation?
Given a relation, R = ABCDE
and this set of FD's:
AB > C
DE > C
B > D
I'm able to find the candidate key ABE (correct?)
I need to decompose this relation R into 3NF.
What I don't ...
1
vote
1answer
94 views
Creating an ERD and relational model design
I need to design a small database for class, I used the following ERD model:
http://imgur.com/OSYwHp6
and got the following relational model:
http://imgur.com/RuMYgHA
by following a similar class ...
1
vote
0answers
74 views
Database hierarchy, aggregation, relations in LibreOffice Base
I am working on a homework project where we design a website for a store, and I have been assigned the database. This is my first database attempt. I am using LibreOffice Base for the design, and ...
-1
votes
1answer
53 views
Access fields tables relations with LINQ
I have two tables: Post and User.
the User has an Id and Name... fields.
and the Post has an userId and Title... fields.
im using linq, and i want to be able to write something like this:
var post ...
0
votes
1answer
34 views
Database: Relation between one attribute to several entity instances
Is there such a thing? I'm not implementing anything, I'm just creating an E-R Diagram from it. Here is a simple example:
ENT(Ent_ID, Group_IDs)
GROUP(Group_ID, Att)
The attribute Group_ID would ...
0
votes
1answer
27 views
How can I relate a ID to an actual name in a Database
I have a database but one part of it that has baffled me is how I can get it to relate a supplier ID to the name of the supplier.
So for example I want to add a product through a form but at the ...
0
votes
0answers
55 views
Software that automatically show possible relations between tables? [closed]
I need a software to automatically show possible relations between tables.
exemple:
--Software see that there could be a relation between tableA and tableB:
tableA.processID = tableB.ProcessID
What ...
-1
votes
1answer
5k views
SQL ON DELETE CASCADE, Which Way Does the Deletion Occur?
If I have two relations in a database, like this:
CREATE TABLE Courses (
CourseID int NOT NULL PRIMARY KEY,
Course VARCHAR(63) NOT NULL UNIQUE,
Code CHAR(4) NOT NULL UNIQUE
);
CREATE TABLE ...
2
votes
3answers
123 views
How to stablish a one to many relationship between 2 tables
I'm dealing with this situation. I've got three tables in SQL SERVER called Movies, Series and Orders.
Orders has an ItemId where this could be a MovieId (Movies PK) or SerieId (Series PK). I mean, ...
0
votes
0answers
41 views
Normalisation into BCNF when there are more than one key
I posted the same question yesterday, but didnt get any answer. So I decided to post the same question again..
I have a relation looks like:
R = (X,Y,C,D)
and functional dependencies:
FD = {XY ...
2
votes
1answer
159 views
Normalisation into BCNF
I have a relation looks like:
R = (X,Y,C,D)
and functional dependencies:
FD = {XY -> CD, YC -> D, D -> X}
I found out that the candidate keys are XY, YC, YD.
In this case, I have 3 ...
1
vote
1answer
470 views
Insertion Anomaly
I am learning insertion anomaly from here. Following data is written in it,
Insert Anomalies
An Insert Anomaly occurs when certain attributes cannot be inserted into the database without the ...
2
votes
1answer
84 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
votes
1answer
65 views
Database Relations Problems [closed]
I have a project and I need to make a relation between two columns in my DB. I need to make it one to many because the name of the "driver" (you will understand in the Query) can repeat several times ...
3
votes
3answers
172 views
Establishing a one to many relationship between 2 tables
I am building a database which consists of a
table of category, customer table, and table of product which fetches information from categories.
Now I need a new table for sale which consists of ...
0
votes
2answers
610 views
utf8_bin vs. utf_unicode_ci
My table Website
Website_Name//column name
Google
Facebook
Twitter
Orkut
Frype
Skype
Yahoo
Wikipedia
I i use utf8_bin collation then my query to search wikipedia in Website is
Select Website_Name ...
2
votes
1answer
831 views
Entity Framework 4.3.1 Code First relation not working when getting data
This is the first time I am making a project in C# with the Entity Framework 4.3.1. I am having troubles with getting all the data from the Tournament table, the Address to be precise.
First of all, ...
5
votes
1answer
487 views
How to obtain a minimal key from functional dependencies?
I need some help and guidelines.
I have the following relation: R = {A, B, C, D, E, F} and the set of functional dependencies
F = {
{AB -> C};
{A -> D};
{D -> AE};
{E -> F};
}
What is ...
0
votes
2answers
89 views
Persistency unit fails to make the relation many to many
Ok this is a weird problem because I had it working before.
So I have 2 classes: game and developer. They have a many to many relationship.
The persistency unit makes automatically the table ...
2
votes
1answer
199 views
JPA - unique bi-directional entity relationship
I want to make relations between my "Tag" entity. The relationships are bi-directional and are stored in my entity "TagRelation":
Each tag relation should only have 1 entry in the tag_relations ...
0
votes
1answer
325 views
Functional Dependency Trivial
If you have something on the LHS and RHS is it considered trivial if that's the only symbol on the RHS? For example:
ABC -> C
Could you break it down like this:
C -> C
A -> {}
B -> {}
...
0
votes
1answer
124 views
DB objects relations visualization
I'm not guru in DBA, so I'll try explain what I want in terms I imagine it.
I have Oracle DB with network devices. each device has ports which has parent device/port
I want some tool which will ...
2
votes
1answer
488 views
BCNF/3NF in Relational Databases
How do you tell if a relation R is in BCNF and 3NF?
I'm reading a textbook, and it's telling me that there are 3 main attributes you're looking at, but I'm having trouble understanding what they're ...
0
votes
1answer
121 views
Looking to combine two queries
I am trying to combine two queries into one and I hope you can help me.
The query gets me list of entries (zip codes) that are within a certain distance. That works just fine. ($lat, $lng, $zip and ...
4
votes
2answers
2k views
Define a custom ordering criteria in the relations() method in Yii
I have a model A that has a relationship of type HAS_MANY with model B.
B's attributes:
id,
user_id,
message,
date,
parent_message_id
I need elements of model B to be ordered by date (descending) ...
3
votes
1answer
2k views
Compute canonical cover using armstrong's axioms
question:Determine the canonical cover using Armstrong’s Axioms. Give the axioms that you use to arrive at each step.
R = (A, B, C, D, E, F)
Fdependencies = {A -> B, A -> C, CD -> E, CD -> F, B -> ...
1
vote
1answer
467 views
Database indexing: Example
I have an exam soon and I want to know how to solve these questions about indexing:
1.A database consist of a relation R(A,B,C). A and B are integers [0,10 000] (4B each) and C is a varchar(20) ...
0
votes
1answer
257 views
Removing Anomalies from tables
I have this table and I am supposed to re-design it to remove all anomalies from it. I will not give the table but the dependencies.
The functional dependencies are
(Product, Store) -> Dept
Store ...
0
votes
1answer
227 views
SQLAlchemy - difference between mapped orm.relation with backref or two orm.relation from both sides
In some project I implement user-requested mapping (at runtime) of two tables which are connected by a 1-to-n relation (one table has a ForeignKey field).
From what I get from the documentation, the ...
1
vote
3answers
177 views
Defining Status of data via Enum or a relation table
I have an application which has rows of data in a relation database the table needs a status which will always be either
Not Submitted, Awaiting Approval, Approved, Rejected
Now since these will ...


