Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
28k views

PostgreSQL Autoincrement

I'm switching from MySQL to PostgreSQL and was wondering how I can do autoincrement values. I saw in the PostgreSQL docs a datatype "serial", but I get syntax errors when using it (in v8.0).
15
votes
3answers
12k views

Reset AutoIncrement in SqlServer after Delete

I've deleted some records from a table in a Sql Server db. Now the Ids go from 101 to 1200. I want to delete the records again, but I want the id's to go back to 102. Is there a way to do this in Sql ...
11
votes
3answers
4k views

PHP MYSQL - Insert into without using column names but with autoincrement field

I've to insert a long form with 32 fields into a mysql table. i'd like to do that something like this: $sql="insert into tblname values (... 32 fields ...)"; Obviosly it works fine if the fiedls ...
9
votes
7answers
22k views

SQL - INSERT and catch the id auto-increment value

What is the best way to get the auto-id value in the same SQL with a SELECT? A forum said adding this "; has Return Scope_Identity()" in the end of the SQL works in ASP. Is there a corresponding ...
9
votes
5answers
6k views

Upper limit for autoincrement primary key in SQL Server

What is the upper limit for an autoincrement primary key in SQL Server? What happens when an SQL Server autoincrement primary key reaches its upper limit?
8
votes
5answers
404 views

void * arithmetic

#include<stdio.h> int main(int argc,char *argv[]) { int i=10; void *k; k=&i; k++; printf("%p\n%p\n",&i,k); return 0; } Is ++ a legal operation on void* ? Some books ...
8
votes
5answers
371 views

Autoincrementing letters in Perl

I do not understand autoincrementing letters in Perl. This example seems perfectly understandable: $a = 'bz'; ++$a; ca #output b gets incremented to c. There is nothing left for z to go to, so it ...
7
votes
1answer
95 views

MySQL, C++ - Programmatically, How does MySQL Autoincrement Work?

From the latest source code (not certain if it's C or C++) of MySQL, how does it do an autoincrement? I mean, is it efficient in that it stores like a metadata resource on the table where it last left ...
7
votes
8answers
13k views

SqlServer create table with MySql like auto_increment primary key

I want to make a table in SqlServer that will add, on insert, a auto incremented primary key. This should be an autoincremented id similar to MySql auto_increment functionality. (Below) create table ...
6
votes
3answers
69 views

MySQL: Forgot to set Auto Increment

I set up a database, with an auto incrementing column that was meant to be an ID. The problem is that I forgot to check off auto increment when creating the table in phpMyAdmin...and didn't notice ...
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
4answers
4k views

SQL server identity column values start at 0 instead of 1

I've got a strange situation with some tables in my database starting its IDs from 0, even though TABLE CREATE has IDENTITY(1,1). This is so for some tables, but not for others. It has worked until ...
5
votes
2answers
243 views

MySQL : incrementing text id in DB

I need to have text IDs in my application. For example, we have acceptable charset azAZ09, and allowed range of IDs [aaa] - [cZ9]. First generated id would be aaa, then aab, aac, aad e.t.c. How one ...
5
votes
2answers
5k views

Autonumber with Entity Framework

I want to loop through a collection of objects and add them all to a table. The destination table has an auto-increment field. If I add a single object there is no problem. If I add two objects ...
5
votes
5answers
1k views

postgresql nextval generating existing values

I had to migrate from a mySql based ruby on rails app to using postgresql. No problems but one so far, and I don't know how to solve it. The migration of data brought ids along with it, and ...
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
4answers
2k views

Reset the row number count in SQLite3/MySQL

I am using SQLite3. I load a table with say 30 rows using integer as Primary ID and it auto-increments. Now I delete all the rows from the table and then, reload some new information onto the table. ...
4
votes
3answers
3k views

How to retrieve the last autoincremented ID from a SQLite table?

I have a table Messages with columns ID (primary key, autoincrement) and Content (text). I have a table Users with columns username (primary key, text) and Hash. A message is sent by one Sender (user) ...
4
votes
3answers
6k views

MSSQL Select statement with incremental integer column… not from a table

I need, if possible, a t-sql query that, returning the values from an arbitrary table, also returns a incremental integer column with value = 1 for the first row, 2 for the second, and so on. This ...
3
votes
4answers
111 views

Oracle: insert without columns specification

I have an oracle table with a sequence and a trigger to autoincrement a column. Now I want to make an insert. Normally I should write: INSERT INTO table (column1, column2,...) VALUES (value1, value2) ...
3
votes
4answers
291 views

how to auto-increment column value starting from value other than one in mysql?

i have an existing mysql table with the id column defined as primary, and auto-increment set as true. now, i would like to know if i can set the auto-increment to start from a predefined value, say ...
3
votes
2answers
250 views

mysql auto_increment column increments by a random value

Today I've encountered one of the strangest things with MySQL I've seen. I have a trivial table: CREATE TABLE `features` ( `feature_id` mediumint(6) unsigned NOT NULL AUTO_INCREMENT, ...
3
votes
6answers
480 views

SQL - Concurrent insert of keys into a table

Probably a trivial question, but I want to get the best possible solution. Problem: I have two or more workers that insert keys into one or more tables. The problem arises when two or more workers ...
3
votes
3answers
173 views

How do I Create an AutoCounter Column in a Table in SQL 2008 R2?

There is nothing in the "Data Type" drop-down that indicates an auto-counter. I selected int and I am assuming there is a setting somewhere else to turn it into an auto-counter. The idea is to have a ...
3
votes
1answer
424 views

NHibernate - Identity Column

I have declareted the fallowing Mapping for NHibernate: <class name="Sales" table="Sales" lazy="false" > <id name="Id" column="Id" type="Guid"> ...
3
votes
4answers
1k views

Autoincrement uniqueidentifier in C#

Basically I want to use uniqueidentifier in similar way as identity. I don't want to insert values into it, It should just insert values automatically, different value for each row. I'm not able to ...
3
votes
2answers
550 views

Generating incremental numeric column values during INSERT SELECT statement

I need to copy some data from one table to another in Oracle, while generating incremental values for a numeric column in the new table. This is a once-only exercise with a trivial number of rows ...
3
votes
6answers
2k views

How to fill in the “holes” in auto-incremenet fields?

I've read some posts about this issue but none cover this issue. I guess its not possible, but i'll ask anyway. I have a table with more then 50.000 registers. It's an old table where various ...
3
votes
5answers
1k views

Change the step auto_increment fields increment by

How do I change the amount auto_increment fields in MySQL increment by from the default (1) to n?
3
votes
1answer
345 views

Where should one place the code to autoincrement a sharded counter on Google App Engine/Django when one creates a new model?

I've a model MyModel (extending Google's db.Model), and I want to keep track of the number of Models that have been created. I think the code at from Google's I/O talk on Sharding Counters is quite ...
3
votes
4answers
483 views

How should I go about implementing an “autonumber” field in SQL Server 2005?

I'm aware of IDENTITY fields but I have a feeling that I couldn't use one to solve my problem. Let's say I have multiple clients. Each client has multiple orders. Each client needs to have their ...
3
votes
2answers
3k views

getting an insert ID from Webkit's HTML5 database storage

Webkit (on iPhone and Safari, at least) supports HTML5's database storage via SQLite. I'm trying to figure out how best to get the insert ID (there's an autoincrement field 'id' in the database) for ...
2
votes
1answer
75 views

Syncing DataTable autoincremented columns with Database

The DBConcurrencyException issue occurs when trying to use the Update() method on my Database. I have a table in a database that has an autoincremented ID column, and a DataTable in my c# program that ...
2
votes
3answers
60 views

How to work with auto incrementing columns in mySQL

how would I use the insert into syntax with mysql columns that are auto incrementing? for example: INSERT INTO table (auto, firstname, lastname) VALUES ('Dan','Davidson') would the above code work ...
2
votes
2answers
127 views

auto increment option

I need to set the auto increment option for a particular column in a row of a database to be true so that the value increments each time a new row is inserted. How do i do that?
2
votes
2answers
411 views

MySQL duplicate ID

Could it somehow happen that MySQL generates the same autoincrement ID twice? We have the following situation: a bill with id=100 was created; then it was deleted; then another bill was created and ...
2
votes
2answers
198 views

Scoped AUTO_INCREMENT in MySQL?

I am using MySQL in a rails application. I have a users table (standard stuff like id, name etc) and a books table (again with id, user_id and title etc). I would like to have a column (lets call it ...
2
votes
4answers
442 views

SQL Server: insert next available int

I'm dealing with a table in SQL Server that has a serial_no column, which is defined as a non null int. It doesn't appear to be an auto incrementing field, as if I leave that column out of my insert ...
2
votes
2answers
2k views

MySQL: bigint Vs int

I have been using int(10) and just noticed that Wordpress uses bigint(20) - What is different to use bigint(20) and int(10) for id auto increment? Which one should I use for id column? `id` ...
2
votes
3answers
218 views

MySQL: the inconsistency of auto increment in id numbers

I wonder if you have come across this that the id numbers of auto increment don't arrange in correct order when you click on Browse button on phpMyAdmin - is it just me? Something I have set ...
2
votes
2answers
2k views

Core Data (Mac) How to implement auto increment on an ID field

I was wondering if anyone can point me in the direction of how to set up auto increment on an attribute in a coredata entity. I know the indexed check box just makes the field indexed for searching ...
2
votes
2answers
147 views

Can an autoincrement ID ever change from the mid-transaction value upon commit?

The possibility of this happening seems extremely unlikely to me because of the problems it could cause, but I figured I'd ask the question anyway... Imagine a transaction where an autoincrement ID ...
2
votes
2answers
435 views

How to choose between UUIDs, autoincrement/sequence keys and sequence tables for database primary keys?

I'm looking at the pros and cons of these three primary methods of coming up with primary keys for database rows. So assuming I am using a database that supports more than one of these methods, is ...
2
votes
5answers
467 views

MySQL and INT auto_increment fields

I'm developing in LAMP (Linux+Apache+MySQL+PHP) since I remember myself. But one question was bugging me for years now. I hope you can help me to find an answer and point me into the right direction. ...
2
votes
1answer
341 views

asp.net mvc linq sql problem

I am working on a project using asp.net mvc 2 and linq to sql. The problem occurs when trying to insert data into a table where the table has an identity column type of tinyint. When trying to insert ...
2
votes
1answer
40 views

What could be the Consequence of inserting “id” in any autoincrementing 'id' containing table?

What could be the Consequence of inserting "id" in any autoincrementing 'id' containing table? If I have a Tabe in which I have configured the column "id" as the auto incrmented, But still I am using ...
2
votes
5answers
3k views

SQL INSERT INTO returning autoincrement field

I'm a long time desktop app C++ programmer new to SQL. I need to insert into a table with an autoincrment field, and have that sql statement return the new value for the autoincrement field. ...
2
votes
2answers
1k views

copy an identity column into another table

I have 2 tables that are related,both have identity columns for primary keys and i am using a vb form to insert data into them,My problem is that i cannot get the child table to get the primary key of ...
1
vote
1answer
37 views

PHP PDO Firebird inserting

I'm new in Firebird but I'd like to write a small script in PHP that reads a CSV file and fills an existing Firebird db with its data. The problem is I don't really know how to use the autoincrement ...
1
vote
2answers
67 views

Autoincrement issue - best way to add entries to the database and display them at the same time

I use a SQLite Database and a Java GUI. The information entered on the GUI will be added to a table in the database. This table contains an autoincrement. On the same time I want to display the ...

1 2 3 4