0
votes
1answer
32 views

Allow a foreign key insertion only if another foreign key is matched

I have these 3 tables: --company-- company_id (primary key) name --location-- location_id (primary key) company_id (foreign key referencing company.company_id) name --asset-- asset_id ...
0
votes
1answer
48 views

Foreign key matching in PostgreSQL

Just curious, if I have this table: CREATE TABLE "post" ( "id" SERIAL, "revision" INTEGER NOT NULL DEFAULT 0, "summary" CHARACTER VARYING NOT NULL, "description" TEXT NOT NULL, ...
-4
votes
1answer
36 views

How to store metadata using foreign key? [closed]

I am using PostgreSQL. I have two types of databases, A & B containing different types of data. However, my task is to store metadata of data contained in these two databases, A & B. So in ...
-1
votes
1answer
77 views

Primary key composed of two foreign keys? Oracle

I have a question regarding a table creation. I want to combine the attributes of "Ono" and "Pno" into a primary key for a new table. These are both foreign keys, each from different tables. Do I just ...
2
votes
1answer
72 views

How to create one-to-zero-or-one relationship programmatically - MySQL?

I'm busy with a project and one of the stumbling blocks I've come across has been the following: I have a bookings table, which may or may not result in an invoice being issued (because of some ...
1
vote
1answer
24 views

Unable to create table (errno: 150)

I am aware this has been asked allot, and I am sorry but I honestly can't find the answer. This is my admins table: CREATE TABLE `admins` ( `admin_id` int(11) NOT NULL AUTO_INCREMENT, ...
2
votes
2answers
57 views

Database tables relationship in SQL Server

I have a jobs(job) table and a tool table in my database. Tool table is divided in two parts first is category(tool_category) and other is tool data(common_tools). Now what I want to ask is, I have a ...
1
vote
0answers
41 views

Not sure about my Database Schema

I'm new to DB schema design and was hoping I could get some advice. I am trying to write a small tool for managing access lists for cisco based network devices. I'm stuck on how to model the ...
0
votes
1answer
79 views

Mysql 'Cascade On Delete' Not Deleting on Foreign Key Row When Parent Is Deleted

In a database, I have a username table and I have jurisdiction table. I also have a intermediate table to assign a user to one or more jurisdictions. employee table userID (primary Key) firstName ...
2
votes
1answer
53 views

Describing the purpose of a foreign key in the database design [closed]

I'm designing a database using MySQL Workbench and am defining many foreign keys. I'm curious if there's a best practice for describing the purpose of the relationship. Currently, all foreign key ...
0
votes
0answers
52 views

foriegn key issue - phonegap

Now iam working in a phoneGap project, in page1.html i have the following code to save some datafields from page1.html to localDB, tx.executeSql('CREATE TABLE IF NOT EXISTS tableOne (value1 INTEGER ...
0
votes
1answer
34 views

SQL Server FK same table

I'm thinking of adding a relationship table to a database and I'd like to include a sort of reverse relation functionality by using a FK pointing to a PK within the same table. For example, Say I ...
0
votes
0answers
50 views

Associate same Foreign key in multiple columns of same Model in MVC

Heres my Model Structure : public MainModelClass { int enteredBy{ get; set; } Int co-ordinatorID { get; set; } String Name { get; set; } string Description { get; set; } public ...
0
votes
1answer
76 views

How to manage foreign key errors from insert for the purpose of data validation (t-sql)

I am building a database in SQL Server 2000 and need to perform data validation by testing for foreign key violations. This post is related to an earlier post I made (Trigger exits on first failed ...
1
vote
1answer
67 views

Database Design: Common Foreign Keys to a Single Table

I am still new with database designing and I'm having a bit of difficulty with it. I have a product table that has a main category and sub category attribute and I am having difficulties identifying ...
1
vote
3answers
54 views

Database: big amount of foreign keys

I have a mysql database about a gps system. It has about 70 tables. One of the tables is called vehicles which has only one column containing the vehicles' ids and it is a primary key. The rest of ...
0
votes
1answer
49 views

How to establish a distinct relationship between user and his contacts in a table

Please help me solve this problem I am trying to create a relationship table in sql but the challenge I am facing is If there are 3 users, u1, u2, u3 in user_table create table user_tab (user_id ...
1
vote
2answers
85 views

How to relate 3 tables depending on event

I have a table that have information about different types of events that can be done by persons in two categories civil and worker so for each one of them I have their respective tables civil{ ...
-7
votes
2answers
120 views

Football Database [closed]

I'm here because I have a problem. I am making a website about football (soccer) with all players, championships, teams, etc. and I can't fix that : I created first table, players. Next, another for ...
1
vote
2answers
51 views

Reference data from another table

I am creating a database table and want to make sure that data in one of the column is always bounded by data in a column of another table. for example: Table_1 has Column_1 Column_1 can have ...
0
votes
1answer
87 views

Does foreign key constraints for sql azure federations need tenantid in the actual constraint?

I understand that tenantid needs to be in all tables that you want to federate on in sql azure federations. But do you really need to change the foreign key constraint itself to have tenantid + ...
0
votes
1answer
22 views

How to keep two table's data consistent when deleting records from one of them?

Say, I have two tables: students and course_scores . The attributes in students are student_id, name, sex; While the attributes in course_scores are student_id, course, score. When I delete the ...
0
votes
1answer
75 views

Is it ok to have cyclic foreign key dependencies in a relational database?

I'm writing a code to backup a MySQL database into a binary file. I'm aware of mysqldump but for some reasons I can't use trivial methods. What I'm currently doing: read schema definition sort ...
0
votes
1answer
67 views

I know this is a circular reference but its difficult for me to understand why this is bad

We have a project running where i need to do some ETL work into a new database that created was by a different company. While going through the database diagram given to me by the developers i saw ...
0
votes
1answer
152 views

MySQL Alter table strange key error

I am using MySQL Workbench to create a large database. I keep getting: ERROR: Error 1089: Incorrect prefix key; the used key part isn't a string, the used length is longer than the key part, or ...
0
votes
1answer
75 views

Opposite of RESTRICT in MySQL Foreign Key On Delete?

I'm in the process of redesigning some application security log tables (things like when users log in, access different files, etc.) to address some changing requirements. They were originally made ...
2
votes
3answers
101 views

enforce uniqueness and define foreign key constraint from multiple tables

this question is applicable on different RDBMS: MySQL and SQL Server I've been searching for this all night and I can't find it on the net. My problem is all about uniqueness and foreign keys. ...
0
votes
2answers
34 views

Handling category-specific attributes of items in a database with a PK referencing a FK

Suppose there are a set of attributes common to all Item, like ItemName and ItemImage. Further suppose that you know in advance that there will be a few specific distinctions of Item (they could ...
0
votes
2answers
74 views

Access table relationships

Im building a key inventory management database. I have 5 tables and I believe I have to create relationships between them in order to enforce referential integrity. Here's my question or where im ...
0
votes
2answers
88 views

Reference to table without foreign key constraint

I have a database and an application that edits the database I have a table with addresses called ADDRESS (ID, STREETID, NUMBER) I have a table with street names called STREET (ID, STREETNAME, ...
0
votes
2answers
48 views

How to force seting incorrect or nonexistent foreign key index in MySQL

I have a simple table that contains 3 rows: a short text, its own ID and ID of another object. I want to lose the association with that another object. I want to set its ID to 0 (such object does not ...
2
votes
4answers
234 views

Can Foreign Key be null?

In our database project we have a table Sale that has an primary key and two exclusive foreign keys: Vehicle_ID and Piece_ID . For example if we sell a vehicle we need Vehicle_ID as a foreign key ...
0
votes
2answers
131 views

Deleting foreign key references in a database table

Given this problem: Consider a relation geq which represents “greater than or equal to”, that is, (x,y)E geq only if y < x. create table geq ( lb integer not null , ub integer not null , ...
2
votes
2answers
109 views

Database design queries regarding inheritance and foreign key references

I have a query regarding a design problem that I faced … There is a table A with subtypes B and C. Table A has an attribute type which tells whether the type is B or C. The common attributes of B ...
0
votes
0answers
105 views

SQL Server Foreign Key Use for this case or any re-design needed

I need help for improvement to the current database design. Here are the design: I have ProductMaster table, where is compile the combination of ProductGroup,ProductType, Brand, Design into ProdCd. ...
1
vote
1answer
65 views

Can a foreign key have a constant instead of a field name? Relate FK to STI subclass

Setup So here's a scenario which I'm finding is rather common once you decide to play with STI (Single Table Inheritance). You have some base type with various subtypes. Person < ...
1
vote
0answers
66 views

Django database design with foreign key

I have a Django app that displays analytics for stock data. One thing that I would like to show in my analytics is a plot of current return (y axis) and risk (x axis) for stocks in the S&P500 ...
1
vote
1answer
390 views

Can only one foreign key reference a primary key?

When creating a table and a database in do the foreign keys need to be unique? For example Table: Manifest Manifest_Barcode - PK Vehicle_reg - FK weight description Table: Vehicle vechicle_reg - ...
1
vote
2answers
102 views

What is the best design for a database table that can be owned by two different resources, and therefore needs two different foreign keys?

My application has notification settings for users that can belong to groups. A group administrator can define settings for the entire group, so that when any user performs an action, the ...
7
votes
2answers
826 views

Composite primary key in identifying relationship: why?

OK, I hope this is an appropriate question for stackoverflow as I'm trying to understand a concept rather than fixing a piece of code that won't work. I'll take a general example of a form (parent ...
2
votes
3answers
137 views

How best to normalize and reference (FK) locations (Neighborhood/City/Region/Country/Continent)

So I have searched around but haven't found a satisfactory answer. I have different types of locations, as stated in the title. Given a type of location (i.e. city), the less granular locations can ...
0
votes
1answer
91 views

composite foreign key referencing one or more columns

I have a table (tableA) that joins 3 other tables with primary keys 'vehicle','engine','transmission' I would like to be able to assign parts to one or more of these eg 'only this vehicle' or 'only ...
0
votes
1answer
21 views

Allow NULL or create univerified user

I am developing web application that allows users to post from a registered account or anonymously. Should I allow NULL in the UserId column in the Post table or create an unverified User and ...
1
vote
1answer
178 views

PHP nested loops with foreign key table

This is a multi-part question. My database looks like this: USERS -id -fname -lname COMPANIES -id -name -type PRODUCTS -id -product -restaurant (foreign key to companies id) -vendor (foreign key to ...
0
votes
4answers
128 views

Images with tags database design considerations

I am designing a database that contains photos. A photo can have none or more tags associated with it. Currently I have all tagwords/keywords in a column separated by spaces per image record. Now I ...
2
votes
4answers
456 views

How many foreign keys is too many?

After running across this article: http://diovo.com/2008/08/are-foreign-keys-really-necessary-in-a-database-design/ It seems like a good idea to use foreign keys when designing a database. But when ...
0
votes
1answer
398 views

Foreign key column which allows null values

I need to represent a form, called E-Report, where users will add data. Every E-Report will have a QAP and every QAP will have two or more Defects. These defects will show here, in this table: At ...
2
votes
5answers
2k views

Foreign key with multiple columns from different tables

Let's take a stupid example : I have many domestic animals, each one with a NAME as an id and a type (being CAT or DOG), let's write it this way (pseudo code) : TABLE ANIMALS ( NAME char, ...
0
votes
1answer
121 views

How to do row versioning in MySQL while maintaining foreign key referential integrity

A client of mine has a dynamic changing business model, they sell products according to the daily USD exchange rate, this means the pricing of products change on a daily basis and the client still ...
0
votes
2answers
67 views

Bool field as a unique index

Can a Bool field become a unique index and used for a foreign key relationship in conjunction with another table's index? I don't think it can become primary key but what about unique index? Every ...

1 2 3 4 5