Composite primary key is a primary key, which is made up of two or more fields (columns).

learn more… | top users | synonyms (1)

2
votes
3answers
45 views

MYSQL- Best design to store multiple emails/addresses for one user

I checked this question here but unfortunately the link to the diagram in not working so I'm stuck. I am trying to have multiple emails for one user (work, business, personal, etc) and I'm not sure ...
0
votes
0answers
19 views

Entity Framework | Composite Primary Keys

I just need to get the Composite primary key of an entity. my entity: public class UserRole { public int ID_User {get;set;} public int ID_Role {get;set;} } my entity mapping: public class ...
0
votes
0answers
21 views

Codeigniter MY_Model composite primary key

I'm working with a base class MY_Model for accessing the database, which contains all the CRUD methods. The model which I'm using is Jens Segers' MY_Model: ...
0
votes
1answer
20 views

Composite Primary key in JPA EclipseLink DynamicPersistence

Eclipselink Dynamic Persistence allow multiple primary key by : DynamicTypeBuilder.setPrimaryKeyFields(String primarykeysField...) But how can i find entity object(instance) by EntityManager.find( ...
0
votes
1answer
23 views

Composite Primary key in JPA

The EmbeddedId or IdClass annotation is used to denote a composite primary key. How can i use composite primary key without ( EmbeddedId or IdClass ) ? If it is possible to use composite primary key ...
0
votes
0answers
47 views

Symfony2 Doctrine ORM Composite Primary Keys

I am developing an application in Symfony 2.3 with Doctrine 2.4 as ORM. The database engine I use is PostgreSQL. I'm having problems when mapping entities with composite primary keys in other tables. ...
1
vote
1answer
20 views

Should I use composite primary keys if I use JPA and the keys can change?

I'm a little confused if I should use composite primary keys or surrogate keys. Initially I wanted to use composite primary keys when they were needed so have a more clear database, but some parts of ...
0
votes
1answer
15 views

Constraints and keys in sqlite database model

I'm setting up a simple Sqlite database using the modelling tool in Navicat. The setup is as follows: Table 1: _employer_ col1: name (PK) ----------- Mcdonalds | NHS London | Police | ...
-1
votes
2answers
20 views

Re Increment the Primary Column after deletion of the record in table in Sql?

i want to do this one to my child table. check the primary key.It does not contains Identity Specification. when inserting data my table should be like this when i delete a record it should be ...
0
votes
0answers
22 views

Cassandra data modeling for querying over different columns

If I have a table CREATE TABLE MyTable ( a int, b int, c int, d int, PRIMARY KEY (?) -- what should I use ? ) I want to query it in 3 different ways: SELECT * FROM MyTable ...
0
votes
0answers
31 views

Cassandra row cache with composite primary key

When using a row cache with a composite primary key, what is the cache key: The partition key only ? (i.e. the physical row is cached) Or the whole primary key (i.e. partition key + clustering keys ...
0
votes
2answers
39 views

How can I set a composite primary key in my migration file in Ruby on Rails?

migration file: class CreateMyRecords < ActiveRecord::Migration def change create_table my_records:, :primary_key =>:partner_id do |t| t.integer :partner_id, references: [:Partner, ...
0
votes
1answer
31 views

Add composite primary key to sql result

I am trying to create a mysql queryer in java and I would like to be able to add the primary key(composite) associated with the user query. For example: SELECT * FROM my_table WHERE logic How ...
0
votes
0answers
79 views

Update query in JPA using composite primary key

I have an entity Student with a composite primary key (indId, studentId). I want to update some rows in this table. My codes: private EntityManager em = null; @PersistenceContext public void ...
1
vote
1answer
46 views

Why does primary key order matter?

I recently set up a class in an EntityFramework project which designated a couple of its members as a composite key. However, when it came to time to create the database from this it gave the error ...
0
votes
1answer
40 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
67 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
16 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
52 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
50 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
149 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
50 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 ...
1
vote
2answers
143 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
58 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
60 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
158 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
47 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
233 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
869 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 ...
3
votes
1answer
71 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
88 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
102 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
100 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
358 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
25 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
71 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
62 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
57 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
167 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
204 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
94 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
128 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
37 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
152 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
117 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
77 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
104 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
23 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
82 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 ...

1 2 3 4 5 6