1
vote
1answer
12 views

apache derby: specifying an ID for a column “GENERATED BY DEFAULT AS IDENTITY”

The following sql statements for apache derby works fine: connect 'jdbc:derby://uri'; create schema TEST02; set schema TEST02 ; create table T ( id INT not null primary key GENERATED BY ...
1
vote
2answers
33 views

How to achieve unique auto-incremented id for rows across multiple tables?

I've got several tables in a database, let's say they're called table1, table 2, etc. All tables have a primary key column 'id' with auto-increment. In my current configuration it happens that when ...
0
votes
1answer
27 views

MySQL ID Increment Conundrum

I have a mysql table with auto increment. I'm using an id as the primary key. Here is the structure of the key:: id int(255) No None AUTO_INCREMENT This is how the increments ...
1
vote
1answer
58 views

How retrieve in PHP the generated PRIMARY KEY from an AUTO_INCREMENT column for each row with an INSERT of multiple rows in MySQL?

I have an INSERT with syntax for insert multiple rows: INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9); With MySQL function LAST_INSERT_ID() can retrieve the primary key of an generated ...
1
vote
1answer
87 views

MySQL performance using AUTO_INCREMENT on a PRIMARY KEY

I ran a comparison INSERTing rows into an empty table using MySQL 5.6. Each table contained a column (ascending) that was incremented serially by AUTO_INCREMENT, and a pair of columns (random_1, ...
1
vote
1answer
42 views

Start auto_increment value not working when populating table with data from another table in MySQL

I want to create a table with data from another table in order to set the id to a certain auto_increment start value. This is the table I want to populate with data from another table: ...
1
vote
2answers
149 views

LOAD DATA LOCAL INFILe: loading data form text file auto incerment syntax

I'm trying to load data from a .txt file into mysql. The table looks like this: +-------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | ...
0
votes
1answer
82 views

In doctrine2 is it posible to have an autoincrement column that is not the primary key?

Hi thanks to all for reading. English it's not my main language so tell me if I'm not clear enough. In doctrine2 I have an entity that has a primary key that's feeded from a webservice, and also has ...
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 ...
0
votes
2answers
79 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 ...
9
votes
2answers
189 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
4answers
685 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 --------------- ...
-1
votes
1answer
232 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 ...
0
votes
1answer
104 views

Choice of Primary Key and unexpected behaviour of Auto Increment in mysql

Hi I'm making an event management site. The users (each having a unique login id) from all over the world can add events. The events are stored in a temporary table and when approved by admin are ...
2
votes
3answers
279 views

How to automatically create the primary key that has the following series A001000001 … A001xxxxxx in SQL?

I want to create a primary key(auto-increment) which is start with A001000001. Here A001 would be constant and 000001 would be iterate. I want rows like this: How can I do it using SQL query?
0
votes
1answer
953 views

Primary key id reaching limit of bigint data type

I have a table that is exposed to large inserts and deletes on a regular basis (and because of this there are large gaps in the number sequence of the primary id column). It had a primary id column of ...
2
votes
2answers
155 views

Mysql database table id reuse

In one of my projects, the current implementation of a log system uses a mysql table. The applications released to customers write some log information to the table on a daily basis. There is a script ...
4
votes
4answers
506 views

How can I get the auto incrementing field name or the primary key fieldname from a mysql table?

In PHP, how do I get the field name of the field that's been set as to auto increment when a new rec is added to it? In most cases, it's the same as the PRIMARY_KEY of the table but not necessarily ...
0
votes
1answer
221 views

JPA primary key generation using TABLE GenerationType, not generating sequential values, why?

I am using the TABLE GenerationType strategy for generating primary key values of a table. The starting value is 0 so I am expecting that the id values of the new rows added to the database will be ...
1
vote
3answers
620 views

Mysql Myisam re-using auto-incremented ids that are deleted

I have a table: test id int(10) auto-increment name char(36) Now let us say my WHOLE table it filled from ID 1000 => max unique id number. Id 1 - 1000 = deleted previously. Question 1; WILL mysql ...
0
votes
3answers
669 views

MYSQL copy row to another identical table with AUTO_INCREMENT id field

I have a movie database where movies are inserted into a table named titles with an AUTO_INCREMENT primary key named titles_id. Users can submit movies anonymously which are inserted into a separate ...
0
votes
1answer
190 views

setting MySQL auto_increment to be dependent on two other primary keys

i'm trying to set up a MySQL database for storing biological data. I have to extract this data from a file and i have a perl script for that. The problem i have is that i need three primary keys in ...
0
votes
2answers
400 views

How to obtain with PHP the last ID inserted if my primary key does not autoincrement

I have a table in MySQL that for compatibility issues we assigned specific Primary Keys, therefore they can not be auto incremented. Every time we insert a new topple (in PHP) we need to get back the ...
0
votes
2answers
224 views

What causes duplicate PKs in MySQL?

I encountered this quite a few times so far, but still don't understand it (my MySQL internals skills are equal to none). I know it's probably a PEBKAC but trying to replicate the behavior manually ...
1
vote
1answer
105 views

How can I find which integer Primary Keys in my DB are NOT marked as auto-increment?

Is there a query I can run that will tell me which of my fields in all of the database tables that are integer primary keys are NOT marked as auto-increment? Thanks.
4
votes
1answer
146 views

Is there an extant implementation of a reverse “AUTO_INCREMENT” in either PostgreSQL or MySQL?

Without having to do it manually (which I'm open to implementing if no other options exist), is there a way in either PostgreSQL or MySQL to have an automatic counter/field that decrements instead of ...
0
votes
1answer
192 views

Two primary keys & auto increment

I have a MySQL table with two fields as primary key (ID & Account), ID has AUTO_INCREMENT. This results in the following MySQL table: ID | Account ------------------ 1 | 1 2 | ...
0
votes
3answers
1k views

mysqldump + auto_increment causing primary key error

I am using mysqldump to (a) dump a table, then (b) insert it elsewhere. A problem occurs when I try to do part (b). Here is the error I get. Duplicate entry '1' for key 'PRIMARY' Now, hold on, ...
2
votes
1answer
1k views

mysql not unique auto increment, primary key two fields

I want to create a table structure like this in MySQL: id | area | name ----+----------+------------ 1 | name-1 | test | | 1 | name-1 | value2 | | 2 | ...
2
votes
3answers
178 views

Mysql restart auto int primary key

Hello is it possible to save the deleted auto incremented primary key in my database. For example I have Name_ID 1 2 3 4 If I delete primary key 4 and I insert again the primary key of I ...
0
votes
3answers
673 views

Reset primary key of Postgres database with Django

I was having terrible table issues because I had created my own user class than switched to the default Django class. After innumerable headaches, we decided to just do a clean python manage.py reset ...
2
votes
3answers
99 views

MySQL Auto-Inc Bug?

In my MySQL table I've created an ID column which I'm hoping to auto-increment in order for it to be the primary key. I've created my table: CREATE TABLE `test` ( `id` INT( 11 ) NOT NULL ...
2
votes
2answers
7k views

MySQL: #1075 - Incorrect table definition; autoincrement vs another key?

Here is a table in MySQL 5.3.X+ db: CREATE TABLE members` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `memberid` VARCHAR( 30 ) NOT NULL , `Time` TIMESTAMP NOT NULL DEFAULT ...
0
votes
2answers
357 views

auto_increment field and other primary key in table

i have a table with primary key defined (post_id,category_id).his table implement Many_Many relation. how to add a autoincrement field to this table (i usually use auto_increment field to easily ...
6
votes
3answers
13k views

Set auto increment primary key in postgres

I have a table in PostgreSQL, and I want to add an auto increment primary key to this table (after having already created 22 columns). I tried to create a column called id of type bigserial but ...
0
votes
1answer
184 views

How to transition an existing DB Schema without AUTO_INCREMENT primary key to a key with AUTO_INCREMENT?

I have an application which was developed with HSQL DB and the problem is that we are migrating it to MySQL with JPA/Hibernate. The problem is that the old schema doesn't have an AUTO_INCREMENT ...
1
vote
3answers
919 views

To use auto-increment in MySQL or not?

I have read certain places that it is a good practice to typically use an auto-incrementing Primary key for most MySQL tables, rather than simply relying on a non-increment field that will be enforced ...
1
vote
4answers
367 views

Some sort of “different auto-increment indexes” per a primary key values

I have got a table which has an id (primary key with auto increment), uid (key refering to users id for example) and something else which for my question won’t matter. I want to make, lets call it, ...
0
votes
1answer
115 views

Database auto increment primary key with business login

I have a database with USERS table and EVENTS table, both with auto increment integer primary key called id. when the client app start an event, a message sent to the server, and the server creates a ...
1
vote
2answers
279 views

When to use GUID in SQL Server [duplicate]

Possible Duplicate: GUID vs INT IDENTITY Every now and then I see a system using GUIDs and I ask myself how much this will impact the performance. I once worked on a system that used GUIDs ...
1
vote
2answers
4k views

Why do I get “ERROR 1062 (23000): Duplicate entry '4289' for key 1” on an update?

This question has been asked in a number of different flavors before, but the answers supplied in those cases so not come close to helping me solve my problem. We are running MySQL version ...
0
votes
2answers
2k views

composite (alphanumeric) primary key and auto increment

Is it possible to make an auto-increment function in MySQL that combines alpha elements and numeric? I have an existing system with keys like QAb99, QAb101, QAd9003, etc. The max numeric portion ...
0
votes
0answers
876 views

C# SQLCE giving “Foreign key value cannot be inserted because primary key value does not exist” after deleting all records

I've been searching everywhere trying to find the answer to this for at least a week now, so hopefully you all can help me. Let me give some background on the program first: Using Visual Studio 2010 ...
1
vote
4answers
505 views

autoincrement as primary key causing duplicate entries

I want an id and name to be primary key for my table. I want to increment id with every insert, so i set it to auto_increment. The problem is when i insert into table a new entry with same name, it ...
2
votes
2answers
871 views

Alternative to auto-increment primary key in MySQL for multi-master replication

A webapp I am speccing out is going to need to be horizontally scalable, and will require a pair of MySQL servers from the start (perhaps rising to more than one soon after launch). As an ...
0
votes
3answers
1k views

Minimum length for auto increment ID field in MySQL

How can I set a minimum length for my primary key ID which is auto incremented. Now the auto increment starts at 1 and goes up from there. However I would like the id to be at least 5 characters long. ...
2
votes
1answer
7k views

Reset PK auto increment column

I've been importing thousands of records multiple times in an effort to get the import running perfectly. As a result, now when I do the live import before release, the ID columns for the auto ...
3
votes
3answers
777 views

UUID versus auto increment number for primary key

Why should I choose UUID over an auto increment number for my entity's primary key? What are the pros and cons?
1
vote
1answer
63 views

MySQL: Changing IDs of primary keys

I need to merge parallel tables from 2 different schemas. They are practically the same (some fields are different), but the IDs (their PKs) are different. I need to conform one table to contain the ...
1
vote
1answer
599 views

Convert MyISAM to InnoDB where tables have two-column (composite) PK and one of those is auto-increment

I would like to convert some of our MyISAM tables to InnoDB so I can take advantage of foreign key support. However, most of the tables use a two-column (composite) primary key design in which one of ...

1 2