Composite primary key is a primary key, which is made up of two or more fields (columns).
0
votes
1answer
17 views
Populating 3 columns in an excel sheet from C#, without having repeated values across rows
Sorry if the question title was a bit weird. I want to populate 500 excel rows with a composite primary key which consists of 3 columns. 2 columns automatically generate random int between 1 and 50 ...
0
votes
1answer
16 views
Composite primary keys or surrogate primary key on relationship entities (entities that are also relations) in Doctrine2
I have a large database where I have entities that are relations. This exactly because of the following comment in the Doctrine 2 manual: I needed to store additional attributes in our relations and ...
1
vote
1answer
11 views
does all attribute in composite key have unique values
if a composite key is built by 2 attributes empname,empid of type VARCHAR and NUMBER respectively.then is it true that both these attributes are unique and not null.pls expalin
0
votes
1answer
39 views
How to create a single foreign key that points to a multiple-column primary key?
I have created with MySQL 5.5 a table1 with a multiple-column primary key, created from two FLOAT columns. I want to create a table2 with a single foreign key that points to the primary key of table1. ...
3
votes
2answers
41 views
MySQL index not being used as expected
What can I do to make mysql use the expected indices?
I've got 4 tables, two containing resources, and the others containing historical changes.
One pair uses indexes correctly, the other doesn't, ...
1
vote
0answers
77 views
Hibernate find with composite key. Invalid column name Exception
I'm trying to do a Hibernate Find using a composite Primary key but keep getting the following error:
Caused by: org.hibernate.exception.SQLGrammarException: Invalid column name ...
0
votes
1answer
42 views
Referencing a composite primary key
I have two tables, with each table having a composite primary key.
One attribute is in both composite primary keys.
How am i supposed to reference the common attribute?? Do i just reference it as a ...
0
votes
2answers
110 views
Hibernate One to One Association when key names are different
I have two tables with composite id having one to one relationship.
Table One : PK Columns : column1, column2
Table Two : PK Columns : column3, column4.
Columns are having different names. I have ...
0
votes
2answers
40 views
Foreign Key to Composite Primary Key
I have a problem with foreign keys.
The master table is:
Course (courseName, courseId)
and PK is courseId
The second table is:
Section (sectionId, courseId)
and PK is (sectionId, courseID), ...
2
votes
1answer
51 views
Using a composite foreign key from an intersection entity as a primary key?
I have four tables, 2 which are separate entities, an intersection entity which links those two together and third table which makes reference to the intersection entity. Here's the structure of what ...
0
votes
3answers
99 views
SQL Multiple Foreign Keys as Primary Keys
If I declare the table below does it implicitly imply that both the foreign keys make a unique primary key or do I need to do something more to make both attributes as a primary key?
CREATE TABLE ...
0
votes
3answers
46 views
Combined primary keys in MySQL
This may sound a bit daft - but I would like to set up the following scenario:
ClientID,AdvertID
1,1
2,1
3,1
2,2
2,3
1,2
Thus, both ClientID and AdvertID must be primary ...
0
votes
1answer
176 views
JPA Repository / Service design with composite primary keys
I designed the following database tables:
"article" with "materialID" as primary key.
"supplier" with "supplierID" as primary key.
"procurement" with "materialID" and "supplierID" as composite ...
0
votes
1answer
361 views
org.hibernate.ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations)
I have 3 tables in Oracle (10g).
Zone
Weight
ZoneCharge
Where ZoneCharge has a composite primary key(zoneId, weightId) which references to primary keys of the Zone and the Weight tables.
I need ...
0
votes
1answer
25 views
Primary keys in MySQL
I am trying to create a table from an existing table. Will the primary keys from the existing table transfer over to the new table?
create table B as select column1, column2, column3 from A.
In ...
2
votes
1answer
61 views
SQL composite primary key without ordering (pair of integers in either order must be unique)
I have a MySQL table for Users with the primary key _id, and I want to represent friendships (visibility on friends lists of other users) as a table with pairs of userId foreign keys. I'm thinking ...
0
votes
1answer
61 views
How to create a composite primary key using SQLite Manager
For a project I'm working on one of my SQLite tables requires a composite primary key consisting of two foreign keys. The record retrieval relies on two conditions; a college course and the students ...
2
votes
1answer
90 views
Create a trigger that won't let updating the primary key columns
I have a table that has a composite primary key made from 3 columns, let's say A, B, C. I want to create a trigger that on UPDATE will check that these three columns won't be changed. This is what I ...
1
vote
2answers
69 views
Join table with composite key in rails
Let's assume a generic join table FollowCompany between a User and a Company model, e.g.:
class FollowCompany < ActiveRecord::Base
attr_accessible :user_id, :company_id
belongs_to :user
...
1
vote
1answer
309 views
How to use ASP.NET MVC4 / EF5 scaffolding with a composite primary key?
I use Visual Studio 2012 (Web Express) and I am creating a simple ASP.NET MVC application, (using the Database-First approach) by following this nice guide by hector espinosa. My problem is, that, for ...
0
votes
0answers
21 views
DBMS: Entity Modeling
I want to express the relationships between entity_A that has a composite primary key of intID1,intID2,intID3 where intID1 exists as the primary key in entity_B and intID2,intID3 exist as a composite ...
0
votes
1answer
64 views
Many to many relationship with a composite key on SQLAlchemy
Let's say I have the following model:
class Molecule(Base):
db = Column(Integer, primary_key=True)
id = Column(Integer, primary_key=True)
data = Column(Integer)
class Atom(Base):
id = ...
0
votes
0answers
59 views
Many-To-Many with attributes and composite id
Supposing I have a many-to-many relationship with an attribute. I want to substitute this with two one-to-many relationships. If I configure the keys, I get a strange warning, that the primary key has ...
0
votes
1answer
50 views
What is the use of database table with only composite primary key, and nothing else?
Just as the above question. Besides, this table's primary key is a foreign key in another tables, so what's the difference if we map them to their original tables without passing through this table's ...
1
vote
0answers
139 views
Entity Framework won't resolve PK-FK relationship with composite primary key?
I'm trying to set up an EDM on an existing SQL Server infrastructure, and came across a problem.
The EDM will not resolve a PK-FK relationship to a composite foreign key.
My DB table structure looks ...
0
votes
1answer
154 views
sqlite3 foreign key
I have a database made in sqlite3 and have set foreign keys on the loan table to the student table and book table to stop duplicate loans:
using create table:
CREATE TABLE loan(
SudentID INTEGER,
...
0
votes
1answer
82 views
Oracle COLUMN_ID implicit index creation
How does Oracle use COLUMN_ID as found in USER_TAB_COLUMNS view? I just need to confirm that it does not use this internal column ordering while creating implicit indexes - such as when a primary key ...
1
vote
0answers
119 views
How to use jsf @ConversationScoped bean with an hibernate composite primary key?
im a newbe with java and jsf and hibernate and i´ve been using jboss forge to generate the crud functions for my entities but i dont know how to make it work with hibernate @embedable id, here is my ...
0
votes
1answer
35 views
Active Record: Implicit value for part of multi column belongs_to key
We have multiple lists of shops from different data sources that have to be matched.
The shops have a composite primary key [source, id]. The matching creates a separate entry in the shops table with ...
0
votes
0answers
120 views
EmbeddedId with foreign keys: MapsId only works with JoinColumn
I know the title is a bit fuzzy, but bare with me.
I have three classes Spam, Bacon and Eggs.
Spam has a many-to-many relation to Bacon through Eggs. Eggs also has a int amount:
@Entity
public ...
1
vote
0answers
98 views
Embedded Parent/Child relation in same class
I'm trying to map a Parent Child relationship within a single table with a composite id.
But I had some difficulties with it and could not seem to find the right answer through Google & ...
0
votes
1answer
66 views
What is the difference in perfomance of using composite primary key vs simple index?
I'm using innodb mysql tables for storing data.
In my project i have to store maxmind geoip database in mysql (to have native foreign keys with different entities).
Most tutorials how-to import ...
0
votes
1answer
85 views
Phalcon\Mvc\Model and composite primary key
I use Phalcon\Mvc\Model for all entities in my project (to keep things standartized).
Today i had to import maxmind geoip database in my mysql database to implement native relationships between some ...
0
votes
1answer
19 views
update from another table with 2 primary keys
i have two table T1 & T2 with same columns (service, desti,...)
composite primary key on T1 (service, desti)
I want to update t1 as data in t2.
Plz advise,
Thanks in advance
0
votes
0answers
72 views
Composite keys Netbeans wont generate entity
I have a problem with Netbeans and the generation of entities.
I have this table :
CREATE TABLE companies(
company_id INTEGER NOT NULL AUTO_INCREMENT,
company_name VARCHAR(200) NOT ...
2
votes
1answer
157 views
How do I create a primary key using two foreign keys in Entity Framework 5 code first?
I have an entity where the primary key consists of two foreign keys to two other tables. I have the configuration working with the following but the table is generated with two FK references.
The ...
1
vote
2answers
387 views
Foreign key as primary key doesn't work if FK table has composite primary key (FK is not part of the composite)
two tables, created using these scripts:
create table user_auth
(
username varchar(255) NOT NULL,
password varchar(255) NOT NULL,
user_id varchar(36) NOT NULL,
PRIMARY KEY(username, ...
0
votes
1answer
170 views
Database composite key in MySql
Condition is Each operator record has a unique group code and product code. It may possible that some group has same product code.
main operator table
id integer PK
...
0
votes
0answers
86 views
NHibernate - Composite key derived from an object's position in collection. How to update position of objects on delete?
I have a PlaylistItem object. It is stored inside of a PlaylistItem collection. Its primary key is a composite key derived from its position in the PlaylistItem collection and the collection's GUID.
...
0
votes
1answer
52 views
Join limit in mysql for tables having different column count
I am trying to join 20 table with almost 6 joining condition between each tables. Each table has differenct coulmn count approx 280. each table has four composite primary key.Common for all 20 tables.
...
0
votes
1answer
132 views
Entity class with a composite primary key doesn't have getter and setter
I have an entity class userdetails which has the username, userid (numeric) and password fields, with username and userid forming a composite primary key. This is negotiable, and possibly unimportant ...
0
votes
0answers
88 views
Multiple Primary Keys in Rails 3
I was wondering how to set multiple primary keys in a single table within rails 3.
I have tried set_primary_keys, that did not turn out so well when I fired up mysql.
I have also tried CPK: ...
1
vote
1answer
177 views
Composite index not used in mysql
According to MySQL docs a composite index will still be used if the leftmost fields are part of the criteria. However, this table will not join correctly with the primary key; I had to add another ...
1
vote
1answer
63 views
Composite primary key is used only to access records but not save records in data_mapper
I have an app that tracks a player's progress over a fitness program. So every player has multiple weeks with the same :week_id
Week_id combined with the belongs_to relationship is the composite ...
0
votes
1answer
58 views
Dropping Unique index and setting same fields to be the Primary Key
I have a 5GB that has 3 columns as a unique (non-clustered) index. I want to promote these three to be the new primary key (clustered). Should I drop this index before change the PK?
Also I am ...
0
votes
1answer
672 views
Using MVC4 Database-first, how to annotate models with a composite primary key?
I am new to MS's MVC4, and I have been given a database for which I must build a CRUD front-end. The tables all have composite primary keys of the form [TableID, TableName, EffectiveDate]. I cannot ...
0
votes
2answers
150 views
JPA - @EmbeddedId and @Id
This is the relevant JPA code:
@MappedSuperClass
public abstract class SuperClass {
@EmbeddedId
private FileId fileId;
protected SuperClass() {
}
public SuperClass(FileId fileId) {
...
0
votes
1answer
568 views
Doctrine composite primary key
I know Doctrine 2.0 supports composite keys. But I am not quite able to find out what I am looking for.
I have 3 tables => agent, client and client_group.
Agent creates client and client_group. ...
2
votes
2answers
167 views
Composite PK without key property
I using manual mapping entity in my Code First on EF5 project and would like to use FKs as composite PK. I have only navigation properties in mapping class (not FK) as mentioned below:
class ...
1
vote
2answers
112 views
Performance on SELECT with composite primary key's element
I'm working with PostgreSQL 8.1 and I have a table with a composite primary key of 3 elements and no other indexes:
PRIMARY KEY (el1, el2, el3)
If I make a select operation like SELECT * FROM table ...




