Tagged Questions
The composite-key tag has no wiki summary.
12
votes
2answers
4k views
Composite Key with EF 4.1 Code First
I am trying to figure out how to have a composite key using EF code First 4.1 RC.
Currently, I am using the [Key] Data Annotation, but I am unable to specify more than one key.
how would one specify ...
10
votes
9answers
520 views
Why do I read so many negative opinions on using composite keys?
I was working on an Access database which loved auto-numbered identifiers. Every table used them except one, which used a key made up of the first name, last name and birthdate of a person. Anyways, ...
9
votes
5answers
4k views
How do I map a composite primary key in Entity Framework 4 code first?
I'm getting to grips with EF4 code first, and liking it so far. But I'm having trouble mapping an entity to a table with a composite primary key.
The configuration I've tried looks like this:
public ...
8
votes
5answers
2k views
In a join table, what's the best workaround for Rails' absence of a composite key?
create_table :categories_posts, :id => false do |t|
t.column :category_id, :integer, :null => false
t.column :post_id, :integer, :null => false
end
I have a join table (as above) with ...
6
votes
1answer
672 views
Conditional composite key in MySQL?
So I have this table with a composite key, basically 'userID'-'data' must be unique (see my other question http://stackoverflow.com/questions/2026379/sql-table-semi-unique-row)
However, I was ...
6
votes
3answers
4k views
JPA Composite Key + Sequence
Is it possible in plain JPA or JPA+Hibernate extensions to declare a composite key, where an element of the composite key is a sequence?
This is my composite class:
@Embeddable
public class ...
5
votes
3answers
210 views
error refreshing JPA Entity
I have the following domain model
Currency ----< Price >---- Product
Or in English
A Product has one or more Prices. Each Price is denominated in a particular Currency.
Price has a ...
5
votes
3answers
347 views
Indexing individual fields of SQL Server composite keys
I'm upsizing a Jet database to SQL Server Express 2008 R2 and before doing so, I'm re-evaluating the schema (it was designed in 1997-98, and the guy who designed it (i.e., me) was something of a ...
5
votes
4answers
4k views
How to map a composite key with Hibernate?
In this code how to generate a Java class for composite key (how to composite key in hibernate):
create table Time (
levelStation int(15) not null,
src varchar(100) not null,
...
5
votes
2answers
3k views
Composite Key/Id Mapping with NHibernate
i have the following tables in my database:
Announcements:
- AnnouncementID (PK)
- Title
AnouncementsRead (composite PK on AnnouncementID and UserID):
- AnnouncementID (PK)
- UserID (PK)
- DateRead
...
5
votes
3answers
5k views
Composite Primary Key performance drawback in MySQL
We have a table with a composite Primary key consisting of three fields (and it is in MySQL 5.1). There are near 200 inserts and 200 selects per second on this table, and the size of the table is ...
5
votes
5answers
2k views
MySQL Question - Unique Key Not functioning correctly, or am I misunderstanding?
I'm trying to create a relation where any of four different parts may be included, but any collection of the same parts should be handled as unique.
Example:
An assignment must have an assigned ...
4
votes
3answers
1k views
How to query a couchdb view using a composite key?
I have a couchdb view "record_by_date_product" with the following definition:
function(doc) {
emit([doc.logtime, doc.product_id], doc);
}
I am trying to run a query which is something like:
...
4
votes
1answer
958 views
How can I use generated value within composite keys?
I have two classes documentlog and documentversion(with primary keys: int doc_id and int docVersionID) with a many-to-one relationship. I used a composite key class called CompundKey to manage the ...
4
votes
2answers
4k views
Composite DB keys with Entity Framework 4.0
The re-design for a large database at our company makes extensive use of composite primary keys on the database.
Forgetting performance impacts, will this cause any difficulties when working with ...
3
votes
1answer
221 views
how to update composite keys in hibernate
I have a table with 8 columns C1,C2,C3,C4,C5,C6,C7,C8, where combination of {C1,C2,C3} is a composite key.
I want to update only C2's data, but when I try to update that it's showing an exception:
...
3
votes
4answers
3k views
what is difference between candidate key and composite key?
I am reading about candidate key and composite key. I come to know that a candidate key can qualify as a primary key and it can be a single column or combination of columns and composite key is also a ...
3
votes
2answers
206 views
How do you write a sql statement for a 'where in' clause against a composite key?
Using MSSQL 2005 I am used to writing a statement like this:
delete
from myTable
where ID in (select ID from otherTable where deleted = 1)
How can I do this when otherTable has a composite primary ...
3
votes
1answer
494 views
Entity Framework — Dependent objects not deleted before principal object when cascade deleting composite key entities
I'm having an issue with cascade deletion of dependent objects with composite keys. Specifically, the emitted SQL instructions by EF tries to delete the principle entity before the dependent entity.
...
3
votes
4answers
319 views
How to create a composite key on multiple columns
How can I create a composite key on multiple columns, one of which can have some value but not null (or some constant value)?
For example:
PK Loc_ID Date Time ...
3
votes
1answer
917 views
Entity Framework CTP4 and composite keys
I was playing with EntityFramework CTP4 and decided to apply it to one of my current projects. The application uses a SQLServer database and there is one table with a composite key. Say, table ...
3
votes
4answers
4k views
@OneToMany and composite primary keys?
I'm using Hibernate with annotations (in spring), and I have an object which has an ordered, many-to-one relationship which a child object which has a composite primary key, one component of which is ...
2
votes
1answer
44 views
Hibernate: getters/setters duplicated with EmbeddedIds?
I have a table with three columns, "A", "B" and "C". Two of these columns (A and B) are the composite primary key for the table. I've written a Java class for this table and I'm using Hibernate to map ...
2
votes
2answers
129 views
grails composite “unique constraint”, but how?
I'm very close to a solution but anything is still wrong, hope to get help, thanks in advance.
I have a Customer domain model like:
class BoCustomer implements Serializable{
String firstName
...
2
votes
2answers
184 views
How to use NOT EXISTS with COMPOSITE KEYS in SQL for inserting data from POJO
I am using DB2 DBMS.
Scenario 1:
myTable has a composite key (key1, key2) where both key1 and key2 are foreign keys from yourTable.
I want to insert new data from yourTable into myTable, but only ...
2
votes
0answers
217 views
EF 4.1 EntityType has no key - composite
I have just upgraded to the latest EF 4.1 code-first using NuGet and now I am receiving an error regarding my mapping.
I have this class
public class UserApplication
{
[Key, Column(Order = 0)]
...
2
votes
2answers
77 views
Adding composite foreign key fails in MySQL5
I am trying to enforce that the state/province and country names in the address information for users comes from a set of tables where I list countries and state/provinces. In order to do this I ...
2
votes
1answer
128 views
How to use a foreign key as a part of a composite primary key in Entity Framework?
I've got an entity which is identified by no own id but an unique combination of properties, each of which is a foreign key.
But Entity Framework designer does not seem to allow to make a foreign key ...
2
votes
2answers
259 views
composite key with couchdb, finding multiple records
In couchdb, I know you can pass it a key or a range to return records, but I want to do something like this.... find x records that are x values.
So for example, in regular sql, lets say I wanted to ...
2
votes
1answer
975 views
Composite Foreign Key Constraint via PhpMyAdmin?
Is there a way to add a composite (multi-column) foreign key to an InnoDB table via the PhpMyAdmin interface? I already have the appropriate composite primary key in the target table, and I can ...
2
votes
2answers
829 views
How to properly create composite primary keys - MYSQL
Here is a gross oversimplification of an intense setup I am working with. table_1 and table_2 both have auto-increment surrogate primary keys as the ID. info is a table that contains information about ...
2
votes
1answer
172 views
SQL Information Schema - reading COMPOSITE foreign keys
I'm working on a generic application that uses a set of pre-selected database tables (and it's relationships) to generate a user interface for managing data in those tables. Basicaly, I'm just looking ...
2
votes
1answer
233 views
Database design - composite key relationship issue
I had posted a similar question before, but this is more specific. Please have a look at the following diagram:
The explanation of this design is as follows:
Bakers produce many Products
The same ...
2
votes
1answer
360 views
Hibernate JPA composite key auto generation option
I am making a project for Group Chat which has following domain objects. What I want is that the orderId of CommentPK get auto incremented with respect to the groupId provided. If I use method like ...
2
votes
2answers
364 views
Mapping multiple-row per item objects in Hibernate
I'm encountering somewhat of an, uh, unorthodox design and I'm not quite sure how to handle it. The table I'm trying to map looks like:
TABLE example {
ID INT,
CATEGORY VARCHAR,
PROPERTY ...
2
votes
2answers
410 views
why must a primary key be minimal?
A primary key is an attribute or set of attributes that uniquely identifies a row in a table. But a primary key has not only to be unique, but also minimal. Why is that necessary?
2
votes
5answers
167 views
How can I efficiently compute the MAX of one column, ordered by another column?
I have a table schema similar to the following (simplified):
CREATE TABLE Transactions
(
TransactionID int NOT NULL IDENTITY(1, 1) PRIMARY KEY CLUSTERED,
CustomerID int NOT NULL, -- Foreign ...
2
votes
1answer
767 views
Fluent nhibernate: Enum in composite key gets mapped to int when I need string
By default the behaviour of FNH is to map enums to its string in the db.
But while mapping an enum as part of a composite key, the property gets mapped as int.
e.g.
in this case
public class ...
2
votes
3answers
659 views
MySQL Composite Foreign Key Insert Failing
I have 2 tables with a composite foreign key between the 2. When I try to insert a row into the child table, I get a restraint failure, even though the values exist in the parent table.
Here's a ...
2
votes
2answers
8k views
hibernate composite key
Is it necessary that composite-id should be mapped to class ??
can it be like this ?
<composite-id>
<key-property=..../>
<key-property=..../>
</composite-id>
or should ...
2
votes
2answers
855 views
Using NHibernate's ISession.Get<>() w/ a composite key
The title says it all. I have a composite key in a database table / NHibernate entity. Can I somehow use the .Get method to grab a specific entity or do I have to use HQL / Criteria due to the ...
2
votes
8answers
871 views
Is there a simple way to create a unique integer key from a two-integer composite key?
For various reasons that aren't too germane to the question, I've got a table with a composite key made out of two integers and I want to create a single unique key out of those two numbers. My ...
2
votes
1answer
5k views
Fluent NHibernate mapping a composite ID from inherited composite IDs
Let's say I have an existing database with the following 3 tables:
Table1:
(PK)T1ID1
(PK)T1ID2
Table2:
(PK)T2ID1
Table3:
(FK)T1ID1
(FK)T1ID2
(FK)T2ID1
(Where the 3 keys come from the tables above)
...
2
votes
2answers
3k views
Postgres: How to do Composite keys?
I cannot understand the syntax error in creating a composite key. It may be a logic error, because I have tested many varieties.
How do you create composite keys in Postgres?
CREATE TABLE tags
...
2
votes
2answers
649 views
Should I use a composite key for a map table, which is also used for a foreign key?
I am using ASP.NET and the Entity Framework to make a website. I currently have a map table for a many to many relationship between... let's say users and soccer teams. So:
Users
Teams
UserTeams
...
1
vote
1answer
44 views
can i change the value of a property from another domain class? - grails
I'm a newbie in grails. i'm having a problem right now in my domain classes. I have 3 domain classes, class Patient,class Nurse and class NursePatient, the class NursePatient is a composite key where ...
1
vote
1answer
33 views
MSSQL + hibernate composite key fails on IN predicate
I'm migrating some project on Hibernate (I'm not sure about version it is embedded to JBoss5.1.0GA looks like 3.x) from Oracle to MSSQL.
One of the queries on HQL looks like:
...
FROM k join k.defs ...
1
vote
1answer
36 views
ms access vba display all fields from a composite key in a form
I am looking for a way to display all fields involved in a composite key in a form field. This is to aid the users when they are entering multiple records to keep track of which they are working on. ...
1
vote
1answer
233 views
Cassandra Slice Query for parts of CompositeType
I have a composite column made of four fields: (field1, field2, field3, field4). I need to perform following slice queries:
1. Get All composite columns where field2 has a specific value and other ...
1
vote
1answer
45 views
Comparing 2 tables for new or updated rows using composite keys
I'm writing tsql for SQL Server 2008. I've got two tables with roughly 2 million rows each. The Source table gets updated daily and changes are pushed to the Destination table based on a last_edit ...