Tagged Questions

a database constraint that automatically increases from the last record when making an INSERT

learn more… | top users | synonyms

26
votes
6answers
514 views

Why won't this static variable increment when using generics?

I need a certain class to contain a static member that keeps track of everytime an instance of that class is instantiated, essentially so that each instance of the class has a unique index. It works ...
11
votes
8answers
27k views

Get Auto Increment value with MySQL query

I currently have a database with over 6 million rows and growing. I currently do SELECT COUNT(id) FROM table; in order to display the number to my users, but the database is getting large and I have ...
10
votes
9answers
8k views

Autoincrement in Oracle

What are the other ways of achieving autoincrement in oracle other than use of triggers?
9
votes
6answers
13k views

make an ID in a mysql table auto_increment (after the fact)

I acquired a database from another developer. He didn't use auto_incrementers on any tables. They all have primary key ID's, but he did all the incrementing manually, in code. Can I turn those into ...
8
votes
4answers
450 views

Un-committed database transactions and auto-increment columns

I encountered some curious behavior today and was wondering if it is expected or standard. We are using Hibernate against MySQL5. During the course of coding I forgot to close a transaction, I ...
8
votes
2answers
3k views

How to force MySQL to take 0 as a valid auto-increment value

Long story short, I have a SQL file that I want to import as a skel style file, so this will be done repeatedly, programmatically. I can edit the SQL file however I want, but I'd rather not touch the ...
7
votes
4answers
1k views

Auto-increment on Azure Table Storage

I am currently developing an application for Azure Table Storage. In that application I have table which will have relatively few inserts (a couple of thousand/day) and the primary key of these ...
6
votes
4answers
2k views

how to set auto increment after creating a table without any data loss?

I have a table 'table1' in SQL server 2008 and it has 1000's of record. Now I want the primary key (table1_Sno) column to make a auto-increment column. Can this be done without any data transfer or ...
6
votes
2answers
2k views

Set AUTO_INCREMENT using SqlAlchemy with MySQL on Columns with non-primary keys?

I can't figure out how to set AUTO_INCREMENT on a UNIQUE column using SqlAlchemy 0.6.0 with MySQL 5. I know this can be done in MySQL, but I don't want to have to distribute extra .sql scripts in ...
6
votes
6answers
673 views

SQL GUID Vs Integer

I have recently started a new job and noticed that all the SQL tables use the GUID data type for the primary key. In my previous job we used integers (Auto-Increment) for the primary key and it was a ...
6
votes
4answers
1k views

Django BigInteger auto-increment field as primary key?

I'm currently building a project which involves a lot of collective intelligence. Every user visiting the web site gets created a unique profile and their data is later used to calculate best matches ...
6
votes
3answers
2k views

SQL Server unique auto-increment column in the context of another column

Suppose the table with two columns: ParentEntityId int foreign key Number int ParentEntityId is a foreign key to another table. Number is a local identity, i.e. it is unique within single ...
6
votes
4answers
2k views

Mysql auto increment primary key id's

I have some mysql tables that have auto incrementing id's that are primary keys, but I notice that I never actually use them... I used to think that every table must have a primary key so I guess that ...
6
votes
3answers
6k views

Auto Increment In rails

By mistake I have removed the autoincrement option from id field of my table.Can any one tell me ,how can i reinsert the option of autoincrement in table through migration.
6
votes
4answers
5k views

Can you access the auto increment value in MySQL within one statement?

I have a MySQL database which contains a table of users. The primary key of the table is 'userid', which is set to be an auto increment field. What I'd like to do is when I insert a new user into ...
5
votes
3answers
426 views

Should I implement auto-incrementing in MongoDB?

I'm making the switch to MongoDB from MySQL. A familiar architecture to me for a very basic users table would have auto-incrementing of the uid. See Mongo's own documentation for this use case. I'm ...
5
votes
4answers
789 views

How can I automatically increment numbers in C#?

Hi i am using C# 2008 Windows Forms application,i have a doubt, in my project there is a TextBox control and in that i want make an auto generate numbers for samples s00,next when i come back to form ...
5
votes
8answers
179 views

Is there any reason not to use auto_increment on an index for a database table?

I've inherited the task of maintaining a very poorly-coded e-commerce site and I'm working on refactoring a lot of the code and trying to fix ongoing bugs. Every database insert (adding an item to ...
5
votes
6answers
552 views

Is there any harm in resetting the auto-increment?

I have a 100 million rows, and it's getting too big. I see a lot of gaps. (since I delete, add, delete, add.) I want to fill these gaps with auto-increment. If I do reset it..is there any harM? If I ...
5
votes
5answers
3k views

“Auto increment” alphabet in java?

"Auto increment" alphabet in java - is this possible? From A to Z without a 3rd party library?
5
votes
8answers
2k views

PHP short unique ID generation using auto_increment?

I would like to generate a short, unique ID without having to check for collisions. I currently do something like this, but the ID I currently generate is random and checking for collisions in a loop ...
5
votes
3answers
4k views

How to get last inserted row ID from wordpress database?

My wordpress plugin has a table with a AUTO_INCREMENT primary key field called ID. When a new row is inserted into the table, I'd like to get the ID value of the insertion. The feature is to using ...
5
votes
4answers
692 views

Get next auto increment

I know this isn't so complicated but I can't remember how to do. I just need to know the next auto increment. $result = mysql_query(" SHOW TABLE STATUS LIKE Media "); $data = ...
5
votes
6answers
5k views

AutoIncrement fields on databases without autoincrement field

In MS Sql Server is easy create autoincrement fields. In my systems I stopped to use autoincrement fields for primary keys, and now I use Guid's. It was awesome, I've got a lot of advantages with that ...
4
votes
1answer
46 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 ...
4
votes
4answers
61 views

MySQL: can an AUTO_INCREMENT generate values out of order?

Assume I've got the table: CREATE TABLE test ( ID INT AUTO_INCREMENT PRIMARY KEY, InsertTime DATETIME ) ENGINE = InnoDB; And, through an Apache/PHP website, as a response to web requests, I ...
4
votes
4answers
92 views

How is the MySQL auto_increment step size determined

I have a table of web pages, with the primary key as hash of the URL, and an auto_increment ID column, which is also a unique key. What I'm a bit confused by is why successive inserts don't increment ...
4
votes
5answers
81 views

How do I change the Auto Increment counter in MySQL?

I have an ID field that is my primary key and is just an int field. I have less than 300 rows but now every time someone signs up that ID auto inc is inputted really high like 11800089, 11800090, ...
4
votes
5answers
289 views

multiple auto increment in mysql

I'm using php and mysql. I have a table with the id column set to auto increment as the primary key. I'm trying to add another column called sort_order. The sort_order column should auto increment ...
4
votes
1answer
237 views

MySQL's AUTO_INCREMENT behavior in a multiple row insert

I think the answer to my question is obvious but since I could not find any documentation to support it, I thought it's worth asking. At least for the record. As we all know AUTO_INCREMENT fields are ...
4
votes
2answers
215 views

auto increment after delete from a table [closed]

Possible Duplicate: MySQL: Reorder/Reset auto increment primary key? if I delete from my table a ligne and in this table i have an auto increment ID , DELETE From table where id=2 after ...
4
votes
6answers
237 views

Problem with auto-incremented “id” column

My db table looks like this pic. http://prntscr.com/22z1n Recently I've created delete.php page. it works properly but when i deleted 21th user next registered user gets 24th id instead of 21. Is ...
4
votes
1answer
147 views

What is the acceptable method for generating an auto incrementing primary key in PostgreSQL?

Is there no easy way to do this without sequences and triggers? I have average SQL skills, and I want to use the industry standard method for pl/sql (PostgreSQL). I'm basically converting over this ...
4
votes
3answers
1k views

prevent autoincrement on MYSQL duplicate insert

using mysql 5.1.49 i'm trying to implement a tagging system the problem I have is with a table with two columns -- INNODB - id(autoincrement), tag(unique varchar) when doing INSERT IGNORE INTO ...
4
votes
1answer
361 views

Add an auto_increment column in Magento setup script without using SQL

Previously I asked how to ALTER TABLE in Magento setup script without using SQL. There, Ivan gave an excellent answer which I still refer to even now. However I have yet to discover how to use ...
4
votes
3answers
560 views

Approaches to generate auto-incrementing numeric ids in CouchDB

Since CouchDB does not have support for SQL alike AUTO_INCREMENT what would be your approach to generate sequential unique numeric ids for your documents? Edit: I need numeric ids for several ...
4
votes
1answer
428 views

Adding AUTO_INCREMENT to an existing column

How do I add auto_increment to an existing column of a MySQL table? I don't want to add a new column, just change an existing one to have auto_increment.
4
votes
2answers
927 views

Why does MySQL autoincrement increase on failed inserts?

A co-worker just made me aware of a very strange MySQL behavior. Assuming you have a table with an auto_increment field and another field that is set to unique (e.g. a username-field). When trying to ...
4
votes
3answers
1k views

What happens when auto_increment on integer column reaches the max_value in databases?

I am implementing a database application and I will use both JavaDB and MySQL as database. I have an ID column in my tables that has integer as type and I use the databases auto_increment-function for ...
4
votes
1answer
125 views

Can I use zero in a column which has the AUTO_INCREMENT attribute

I'm using a MySQL 5.0 server. My requirement is to add one special row to an existing table which has an auto-increment primary key. It would be very useful for future maintenance and management of ...
4
votes
3answers
4k views

Is ther a way to retrieve the autoincrement ID from a prepared statement

Is there a way to retrieve the auto generated key from a DB query when using a java query with prepared statements. For example, I know AutoGeneratedKeys can work as follows. stmt = ...
4
votes
1answer
134 views

MySQL table incrementing by 10 for some reason

The id field in a mysql table is incrementing by 10 (11, 21, 31) for some reason. Here is the table definition: CREATE TABLE `clients` ( `id` int(11) NOT NULL auto_increment, `first_name` ...
4
votes
7answers
879 views

Can one rely on the auto-incrementing primary key in your database?

In my present Rails application, I am resolving scheduling conflicts by sorting the models by the "created_at" field. However, I realized that when inserting multiple models from a form that allows ...
4
votes
6answers
1k views

Reset auto-incrementing column

I recently added Items to an ID and the the table got messed up in the transfer process so I deleted the Items from the table. Upon reentering the data instead of the ID starting at one it now starts ...
4
votes
5answers
6k views

Linq to sql error with identitiy increment field

I've just started to use linq to sql and have run into a problem with inserting a record with an auto incrementing field. I have created a new instance of a company object defined by linq. it has ...
4
votes
5answers
6k views

Alternative to “PDO::lastInsertId” / “mysql_insert_id”

I always hear that using "lastInsertId" (or mysql_insert_id() if you're not using PDO) is evil. In case of triggers it obviously is, because it could return something that's totally not the last ID ...
3
votes
1answer
97 views

How to auto-increment a key of a Dictionary?

I am making application in C#. In my application I am using Dictionary of following structure: Dictionary<int, string> DataDictionary1 = new Dictionary<int, string>(); Here I want the ...
3
votes
5answers
98 views

Is mysql auto increment safe to use as userID?

I am working on website that allows people to create profiles online. I was wondering if it is the right choice to use MySQL AUTO_INCREMENTed IDs as my user ids. Also bearing in mind that I might have ...
3
votes
2answers
39 views

How do I update a table to add a primary key and update all of the existing rows with incremented IDs?

I have a table with 20,000 rows of data that I imported but I forgot to put a primary key on it so that each row has a unique key. I want the first row to start at ID 1 and increment all the way up ...
3
votes
1answer
70 views

Duplicate entry '6343' for key 'PRIMARY'

I've begun receiving the above error when trying to add a record to a database. The column in question is set to 'auto_increment' and is of datatype 'INT' with a length of 10. Looking around online I ...

1 2 3 4 5 9