A primary key is a combination of columns which uniquely specify a row.
0
votes
1answer
114 views
Ms Access Relationship between subform and form
I am beginner with Ms Access and databases
I am building meeting management database. I am stuck at some point please help
Database purpose is to manage meetings with different firms which are in ...
0
votes
0answers
33 views
Does Federated Key Have to be part of primary key in every federated table?
When you use federations in sql azure do you have to have the tenantid as part of the primary key on every table? That would mean that all tables except maybe one tenant table would all have composite ...
0
votes
2answers
31 views
There is at least one case were a null primary key is needed. How to treat this particular case?
I've a table SCHOOL_PARENT and a table SCHOOL_CHILD. The SCHOOL_CHILD table contains an id for the child and an id for the parent, that togheter forms the primary key. This is because a child can have ...
0
votes
1answer
245 views
Entity Relationship Diagram: Composition of primary and foreign keys
I have defined the following tables with their attributes:
Table A) Table B) Table C)
- ID - ID - ID1
- Name - xxx - ID2
- Address - yyy - zzz
...
0
votes
1answer
50 views
How to add series of keys on an Entity? Openjpa
I have this entity named product. Is there a way to add a series of multiple keys? Like A key for Serial Number, a key for Serial Number and Model, a key for Model etc. How can you do this? Thank you ...
0
votes
0answers
71 views
PostgreSQL database tables sequence out of sync
I found some help from here about the tables sequence problem that they run out of sync, but those fixes like SELECT setval('id_seq', (SELECT MAX(id) FROM table)); does the trick on one table, but I ...
0
votes
2answers
133 views
fetch primary key from core data
I like to fetch all objects of entity primary key. How I should implement it? How I retrieve ids from it?
This code recommended:
[NSManagedObject objectID].
1
vote
2answers
55 views
Should primary key be used on a table that has only 2 columns, both are unique
If I have a table like the Following
CustomerAddress(CustomerId, AddressId)
Would I still need an additional primary key, e.g., int auto increment? Or would setting both the columns as primary keys ...
1
vote
0answers
9 views
can one column in a table reference three primary keys in three different table
I want to reference UserProfile_tbl(UserId) to three Primary Keys as Student(Regno), Faculty(Regno), Admin(adminId). Is this Possible? I am using UserProfile Table for Login.
1
vote
1answer
18 views
Why is a PK being listed as having an included column in its index?
I have been studying indexing using Adventureworks2008R2 and was told to run this query.
SELECT s.name AS SchemaName,
OBJECT_NAME(i.object_id) AS TableOrViewName,
i.name AS IndexName,
...
0
votes
1answer
93 views
Rename Primary Key constraint on MySQL
I think this might be a bug with MySQL, but I'm not sure. Anyone can tell me how can I create a primary key for a table and then rename the primary constraint? If possible already create the primary ...
1
vote
4answers
116 views
Is there something like primary key and secondary key?
I have something like this:
public class something {
[Key]
public int Id {get;set;}
public string Name {get;set;}
}
public class secondsomething {
[Key]
public int Id {get;set;}
...
1
vote
0answers
104 views
Using “rowversion” as primary key column
I am using SQL Server 2012 and I want to create a "changes" table - it will be populated with data from other table when the second table columns values are changed.
I am adding to the "changes" ...
1
vote
2answers
48 views
Tracking changes in data with no primary key
I am writing an application that uses CC-CEDICT, a CC licensed Chinese-English dictionary.
The dictionary is available only as a zipped text file (4MB) with entries in the following format:
...
2
votes
1answer
44 views
5 Field Composite PK vs Surrogate PK
I need to create a database that will be used by a zoo to keep track of their animals and employees etc. The only thing I need help with is the Service table which will be used to record services ...
0
votes
1answer
142 views
mySql foreign key name issue
Hi I have designed a database in mysql workbench. When I went to forward engineer I got (errno: 121) because I had foreign keys named the same in multiple tables which I realized is not allowed. I ...
0
votes
1answer
143 views
MySQL using partitioning and keeping primary keys unchanged
I'm using MySQL 5.5 I have an existing table in production that stores customer transactions. A simplified version of the table is:
CREATE TABLE transactions (
id INT NOT NULL AUTO_INCREMENT,
...
0
votes
1answer
19 views
Modifying id values in a relation automatically
I have a question regarding DB. Lets say I have id column which is primary key. And 4 rows. Once i remove the row 0 the 1st row must become row 0 in that table. once you set table ID as ...
1
vote
2answers
154 views
Adding PRIMARY KEY: Table contains duplicated values
In PostgreSQL 8.4.13 I have 2 tables and a procedure to fill the 2nd table:
create table pref_users (
id varchar(32) primary key,
first_name varchar(64),
...
1
vote
0answers
139 views
InnoDB forum DB design and Composite Primary Key (Cluster Primary Key)
I am designing forum database using InnoDB and got few questions , Could any one please help me to clarify them?
Posts and Comments table design below
CREATE TABLE `my_posts` (
`forum_id` ...
0
votes
1answer
86 views
Create a function using execute (plpgsql)
I want to make a function that returns the next value of a primary key based on the table name:
CREATE OR REPLACE FUNCTION next_pk (_table varchar) RETURNS INTEGER AS $$
BEGIN
RETURN ...
1
vote
2answers
404 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
0answers
84 views
automatically reassign the value of primary key in a MySql table after the record for that key is deleted
I am using MySql in phpMyadmin. I have a table which contains a primary key. This primary key is the 'userid' and it is also an "auto increment" field. The application also has a functionality of ...
0
votes
1answer
65 views
Can a client ever reliably generate a PK for an object being written to a DB?
I've been fussing with this dilemma for a while now and I thought I'd approach SO.
A bit of background on my scenario:
I have Playlists which contain 0 or more PlaylistItem children.
Playlists are ...
0
votes
3answers
85 views
Can I share a parent table's primary key as a foreign key between two or more child tables?
I have a database named tv_shows which is structured as:
tv_shows(tv_show_id, tv_show_title, tv_show_desc, network, status)
seasons(season_id, tv_show_id, season_no, season desc)
...
1
vote
3answers
44 views
Which columns should I add to a PRIMARY KEY
I want to create a table and avoid duplicated entries, by creating a PRIMARY KEY. The problem is I don't know which columns I should add to this KEY. Consider the next table:
CREATE TABLE `customers` ...
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
2answers
89 views
Whenever I use the primary key in a SQL query, I get an SqlException. What am I doing wrong?
I am normally too impatient to find solutions to my problems too wait for answers to forum posts; I prefer to find answers posted to similar questions asked by other people. But after THOROUGH ...
0
votes
1answer
547 views
Trying to automatically insert a foreign key value into my mysql table
I am new with PHP and MySQL and need help...
Im cant seem to get my head around how to automatically insert a foreign key into a table in my database. The primary key gets added as 'id' in my 'mem' ...
0
votes
1answer
71 views
Identity insert few records without truncating to an existing table
I would like to insert data from a table which is in A server from the B server.
ex:
select count(*) from A.table
-- 100 rows affected
delete from A.table where customer_code = '100'
-- 10 rows ...
0
votes
2answers
711 views
How to avoid duplicate entries in access from vb6?
I am using Vb6 and Access 2007. I am adding records to the access table name "subjectcode" from vb6. The details of subjectcode table are below.
Subjectcode table : ...
3
votes
2answers
379 views
SQL Server Identity primary key vs no Identity performance - Using formula in primary key
Are there any differences in performance between Identity primary key and normal primary keys?
Actually I want to create a table that may fill with more than 5 million rows. The table should return ...
0
votes
2answers
82 views
MySQL performance with missing values on autoincrement id as key
Example:
I have a tab "books" with "id" (int autoincrement) as primary key,
name, author, price etc...(not important). There's 5 books and I delete the book with id=3.
When I add other books the ...
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 ...
2
votes
2answers
85 views
Phone Database Primary Key Issue
I'm designing a database to hold phones, SIM cards, phone-SIM pairings, and a history of phone-SIM pairings. One phone can only be paired to one SIM card at one time.
My issue is trying to think of a ...
1
vote
1answer
48 views
unwanted primary keys in a new sql table
I have bulid a new table in my SQL database with the following command :
Create Table if not exists Images (ImageID int (10) primary key NOT NULL AUTO_INCREMENT ,
UserID int (10) NOT NULL,
...
0
votes
0answers
41 views
Using sp_key in a loop function
I would like to present the primary keys for all the tables within my database as one line per table (ie Table1 - PkA, PkB, PkC). My issue lies in the sp_key function I am using. It will not allow me ...
0
votes
1answer
41 views
JPA Collection of Primary Keys
I am looking to create a collection of primary keys (effectively a one-to-many relationship of entity keys without resolving the referenced entity).
For example,
@Entity
public class BigObject {
...
0
votes
1answer
37 views
Need to update FK with new PK on duplicate
I've got two tables - tonight I'm honestly believing I'm having a blonde moment.
Headings
HeadingID, HeadingName, TopicID
SubHeadings
SubHeadingID, SubHeadingName, HeadingID
What I'd like to do ...
0
votes
1answer
76 views
Guid(Random ints) vs regular int primary key for chat application
I am not asking a general "guid vs ints which is better" question. I know that, or atleast think I know that they both have specific scenarios where one is better than the other. But I do have a ...
0
votes
3answers
75 views
How do I rebuild a table after adding a primary key?
I wanted to add a primary key to an existing table. I think that the best way to do this would be to do a SELECT INTO into a temp table, drop and create the table, and then INSERT INTO the created ...
0
votes
1answer
123 views
Rails update_attributes trying to insert id column
I have a model:
class MyModel < ActiveRecord::Base
has_many :other_things
accepts_nested_attributes_for :other_things
attr_accessible :other_things_attributes
end
class OtherThing < ...
-1
votes
1answer
130 views
IBM DB2 - Find first unused primary key in user specified range [closed]
I am trying to find the first available primary key in a range that the user specifies. For example, if the user enters a range of 8000 to 8100 and I have a table with the following values [...8000, ...
0
votes
2answers
87 views
Generating unique ID for clients on a system running over a LAN in C#
I've a simple client registration system that runs over a network. The system is supposed to generate a unique three digit ID (primary key) with the current year concatenated (e.g. 001-2013). However, ...
2
votes
1answer
95 views
Why would the Primary Key NOT BE a Clustered Index and another Index BE Clustered?
I was reviewing indexes on our SQL Server database today and noticed a relatively small (very old) table (3250 rows) that has a column of type varbinary(max) for image data.
The Primary Key is a ...
2
votes
1answer
537 views
Android: Use UUID as primary key in SQLite
My app needs to get synced with other app users (on there own devices). I also want to support offline editing, that are synchronized to the other collaborative users when the user gets connected to ...
1
vote
1answer
39 views
does a primary key physically reorder on UPDATE?
John showed me that a primary key will physically order based upon the index, but will it reorder?
If I UPDATE the PK which takes one value in the column and makes it now greater when it was ...
0
votes
1answer
163 views
Handle primary key - foreign key tables insertion?
Suppose I have two tables (primary key -> foreign key) where one record in primary key table corresponds to many record in foreign key, so if I want to make insert page (using ASP.NET for instance) ...
0
votes
1answer
142 views
How To Set a Primary Key On a View Using ROW_NUMBER()?
I use SQL Server 2008 and Entity Framework for an app I work on.
I've set primary keys on all tables in SQL Server, since EF requires it, but I have a problem with one view. Since it doesn't have ...
0
votes
1answer
72 views
SQLite. Updating value of primary key in specific order
I have the following table:
CREATE TABLE dataTable(
ParentID INTEGER,
MyIndex INTEGER,
// other stuff
PRIMARY KEY (ParentID, MyIndex )
);
Trying to decrease the value of "MyIndex" ...



