A primary key is a combination of columns which uniquely specify a row.

learn more… | top users | synonyms (2)

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" ...
0
votes
1answer
342 views

Mysql Innodb: Autoincrement non-Primary Key

Is it possible to auto-increment a non-Primary Key? Table "book_comments" book_id medium_int timestamp medium_int user_id medium_int vote_up small_int vote_down small_int comment ...
3
votes
2answers
176 views

MySQL Innodb: Large Composite PK no other indexes

I am creating an Innodb table with four columns. Table column_a (tiny_int) column_b (medium_int) column_c (timestamp) column_d (medium_int) Primary Key -> column_a, column_b, column_c ...
0
votes
0answers
79 views

getting error in dataset while we add procedure with in them

using vb.net .when i add particular mysql procedure to dataset amgetting error like "cannot add or update a child row a foreign key constraint fails " .Here i attached my procedure and table ...
1
vote
6answers
132 views

Must database primary keys be integers?

I always see MySQL database primary keys as integers. Is that because primary keys must be integers, or because of ease of use when setting auto_increment on the column? I am wondering just in case I ...
0
votes
1answer
77 views

Inheritance In Sql Using Oracle Database

Can I use one defined Primary key in more than one table.For example I have an Item Table that has Item_ID, but I also want to write this ID in Vehicle and Piece table as Primary Key.Can this be ...
0
votes
1answer
128 views

Should I always make an Identity column Primary Key for the table?

If I create a table with Identity column, should I always make it PK for the table. I know when we do it automatically creates a clustered index for that table. Is there any perfomance hit keeping all ...
0
votes
1answer
91 views

hide primary keys or ids from being exposed

currently while adding, editing or deleting a object i am using the id (pk) of the object in the urls which of course exposes the global primary key id of that particular object to the users. I ...
6
votes
3answers
161 views

Rails has_many :through --> Should I keep a primary key column?

I have 'author' and 'book' tables, joined in a has_many :through table 'author_book' As far as I can tell, there's no purpose to an :id primary key field on the 'author_book' table...but before I ...
3
votes
3answers
323 views

Reordering Identity primary key in sql server

Yes i am very well aware the consequences. But i just want to reorder them. Start from 1 to end. How do I go about reordering the keys using a single query ? It is clustered primary key index ...
1
vote
0answers
82 views

MySQL: data missing after adding Primary Key

I've just found some very strange behaviour after adding a Primary Key to a table. Before creating the key, there were 6,672 rows in the table. After creating the key, there were 103. However if the ...
0
votes
6answers
85 views

Is there a recommended size for a Mysql Primary key

Each entry in my 'projects' table has a unique 32 characters Hash identifier stored using a varchar(32). Would that be considered a bad practice to use this as the primary key ? Is there a ...
6
votes
3answers
409 views

Insert row if not exists leads to race condition?

I am implementing a simple web based RSS reader using python (not really relevant) and Postgresql (9.2 if relevant). The database schema is as follows (based on the RSS format): CREATE TABLE ...
0
votes
0answers
88 views

Violation of PRIMARY KEY in an update?

I have a strange problem. The sql server sometimes returns Violation of PRIMARY KEY constraint in a stored procedure, where (according to what I know) never could happen. Here is the code: create ...
9
votes
2answers
192 views

mysql unlimited primary keys auto increment

I have a question with im really unsure with. First feel free to downvote me if its a must but i would really like to hear a more experienced developers opinion. I am building a site where i would ...
0
votes
0answers
78 views

Best way to rearrange this relationship table [closed]

I inherited this relationship table from the guys before who had left the company. Everything works fine but the table is just too messy. Im thinking of redesigning it, however im afraid I might make ...
1
vote
2answers
59 views

EF not recognizing PK of view in Oracle

I am using Oracle as the DB, VS2012, and EF 5.0. I know the table has a PK (Composite Key) and I create a view with create view v_table_name as select * from table_name When I try to add the view ...
-5
votes
1answer
261 views

Entity Framework 5 Violation of Primary Key on INSERT [closed]

While there are several entries here on this issue, I found a new solution. Since it ate two days of my project schedule, I would like to think it can somehow benefit others. The problem is that, on ...
0
votes
4answers
767 views

add primarykey with autoincrement in mysql

how to set particular column as primary key with auto increment in mysql.am using alter statement . but am getting error when i excecute the alter statement in mysql. alter statement --------------- ...
2
votes
1answer
307 views

Many to many relationship update: Cannot insert duplicate key

I am still new in EF code first, so please be lenient with me. I have these entity classes: public class User { public int UserId { get; set; } public string UserName { get; ...
1
vote
3answers
1k views

Adding column with primary key in existing table

I am trying to add primary key to newly added column in existing table name Product_Details. New Column added: Product_Detail_ID (int and not null) I am trying add primary key to Product_Detail_ID ...
1
vote
1answer
94 views

Oracle SQL optional primary key

I'm having a problem in an oracle SQL project I'm working on: I have a (weak) entity 'Ticket' that has as primary key: (Customer_id,packet_id,project_id,ticket_id). Customer_id, packet_id and ...
3
votes
2answers
224 views

Primary key violation with new duplicate objects

I'm using Entity Framework 5 with a code first approach. I have two classes that have a many-to-many relationship to each other, Movie and Person. A Movie is related to a Person via a Character. Each ...
0
votes
2answers
1k views

hibernate one-to-one (on foreign key) vs one-to-one (on primary key)

i have questions about what is the benefits of using a one-to-one association on foreign key or a one-to-one association on primary key, I've read the documentation of hibernate available at : ...
0
votes
1answer
42 views

How to add a column in a table and then turn it into the primary key column and add values on SQL?

I have this table right now... CREATE TABLE [dbo].[DatosLegales]( [IdCliente] [int] NOT NULL, [Nombre] [varchar](max) NULL, [RFC] [varchar](13) NULL, [CURP] [varchar](20) NULL, ...
2
votes
1answer
257 views

No results from SQLite when trying to select by PrimaryKey using sqlite-net

For this example, I've defined the following class, which is saved inside an SQLite database: [SQLite.AutoIncrement, SQLite.PrimaryKey, SQLite.Indexed] public int ID { get; set; } [SQLite.Indexed] ...
0
votes
3answers
627 views

Insert multiple rows with incremental primary key sql

INSERT INTO TABLE1 (COLUMN1, PRIMARY_KEY) SELECT COLUMN1, (SELECT COALESCE(MAX(PRIMARY_KEY), 0) FROM TABLE1) + 1 FROM TABLE2 error: Violation of Primary Key ...
1
vote
1answer
67 views

How to create a primary key on a column in SQL Server or how to import a view without PK in EDM designer?

I have a linked server on my SQL server that links to the Active Directory. I created a view that selects relevant information about the users from AD. This view does not have a primary key. Now I ...
1
vote
1answer
125 views

Primary Key generation MySQL Hibernate

I have an application deployed across 2 instances. Database: MySQL ORM: Hibernate However, I need to implement an Oracle sequence like behaviour. Since MySQL doesn't have any, I simply created a ...
0
votes
2answers
57 views

how to disable '_id' in pymongo

I just start learning mongodb, and don't know a lot yet. so my code: #! /usr/bin/env python2.7 import pymongo import datetime class AccountsDB(): def __init__(self): self.store_info() ...
0
votes
1answer
55 views

Composite PK in SQL

I have the following: create table dbo.Packs ( Id int identity not null constraint Packs_Id_PK primary key clustered (Id) ); create table dbo.Files ( Id int not null Data varbinary (max) ...
0
votes
3answers
294 views

SQL: Generate primary key value that is NOT auto generated and has data type of char/nchar

I want to enter some data into a table using asp.net web form. I am not giving user UI to enter value for primary key column required in the table, where data goes into. The table has primary key ...
3
votes
3answers
242 views

Removing Duplicate Entries in MySQL Database without a primary Key

I've received a reasonably big MySQL database with a lot of duplicates. Around a third of the database are duplicates. It is also missing a primary key. The structure of the database is so: ...
0
votes
3answers
49 views

MySql Query to return number of photos in each album

My table is set up like this, all I need to do is call a query to my Photos table. I have PhotoID as the primary key and GalleryID as the foreign key to Gallery. How can I count the number of unique ...
2
votes
1answer
163 views

How to Join Table with Different Primary Key/ Foreign Key

i have a problem in Stored Procedure C# about how to join 3 tables. For example : Table A : ID_Budget,Name,date Table B : ID_Budget,Qty,GrandTotalBudget (Table B is detail from Table A) Table C : ...
1
vote
1answer
62 views

Oracle: Make a composite Key containing three Foregin keys

This is my code: create table orderline ( Order_No number(4) constraint orderno_fk references order_detail(Order_No), Product_Code varchar2(6) constraint productcode2_fk references ...
0
votes
2answers
98 views

the role of index, clustered index and difference betw primary key with those

Im student studying DB.. I was studying big physical three join operations(nested loop, sort merge, and hash join). and I dont know how index is used with the above joins.. here I have question.. ...
-3
votes
2answers
82 views

How to make a style list out of database information

I realize this isn't the typical question, and I will delete it tonight as to not take up space with a non-code error question, but I really need some help. I am trying to pull information from the ...
-1
votes
1answer
74 views

primary key - error 1064 [closed]

I am having problem executing this statement in MYSQL. create Table issue (issueID int NOT NULL AUTO_INCREMENT, PRIMARY KEY(issueID), issue text(1500) NOT NULL, solution text(2000), posterRef int NOT ...
1
vote
1answer
362 views

Laravel Model with Multi Column Primary Key

So I have a simple table in my application which stores many to many relationship between users and orders. As such, this table has a 2 column primary key (userid, orderid) to store values. In ...
-1
votes
1answer
245 views

Android - SQLite Integer Primary Key not being added

EDIT: I found a solution. Apparently if I put "_id" as the nullColumnHack in db.insert dbSave.insert(db.getTable(), "_id", values); then it works. Can anybody explain why? I have a DB in my ...
1
vote
1answer
66 views

How can I turn off primary checks for database

If someone wants to turn off the foreign key checks the statement 'SET FOREIGN_KEY_CHECKS = 0' is used. Is there a MySQL statement to turn off all primary key checks.
1
vote
0answers
62 views

Mismatch columns in the primary key : <target> versus <source>

While merging two DataSets in C# .net framework 4.0, it raised an error: Mismatch columns in the primary key: <target> versus <source> My 1st Dataset is from SQL Server of datatype ...
2
votes
2answers
478 views

Superkey vs Primary Key

I'm having issues understanding super keys in a relation when the relation only contains one functional dependency. When considering a relation R(A,B,C,D,E) where A is the primary key and with the ...
0
votes
0answers
30 views

Display only Index that are not Primary or Foreign Key from a Mysql Table

i have a question. is there a way to display only the indexes from an table that are not primary or foreign key. something like describe table or show indexes. since foreign keys are indexes as well ...
3
votes
2answers
129 views

MySQL Primary Key declaration

I have to create a tally table where the tally is generated by getting the sold price from booksavailable and newarrivals , the cost price from publisher and subract the two to get a profit/loss ...
0
votes
1answer
96 views

How to find something that does not exist in another table?

I'm in desperate need of some help here. My problem is this: There are two tables in my database, tblSubmission and tblStudent. tblStudent is linked with tblSubmission by the student_id key. Some of ...
0
votes
1answer
92 views

How does column order of a clustered Index effect performance

I have a simple mapping table with two foreign key columns (CategoryId int, ProductId int). The Primary Key is applied to both columns. While each Product can have more than one category, it is ...
0
votes
1answer
101 views

How to get auto-incremented keys using JDBC and Microsoft Access?

I'm writing a computer program using Java (JDBC) and I'm having trouble getting auto-incremented keys from my Microsoft Access database. Currently I have three instances of Connection, Statement and ...
1
vote
2answers
103 views

MySQL Error - ADD PRIMARY KEY

i have a big error in my mysql server. MySQL have crash yesterday, but all is ok. If i want to make update today, i have a problem with add primary key. I need ADD PRIMARY KEY to table A13_product ...

1 3 4 5 6 7 32