The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
12 views

Sphinx create attribute for mysql primary key auto increment id

I am trying to create sphinx index for same copy for my mysql table but there i got a error for my auto increment id. So i can't create a same field name of auto increment id. Error: WARNING: ...
0
votes
2answers
69 views

Can I use just one SQL query for auto increment and unique constraint?

I have an SQL database. A table in the database contains a column which is ID. I want to write an SQL query that alters that table so the values for ID column are automatically incremented (ID is ...
2
votes
3answers
44 views

Autoincrementing strings

I'm trying to build a hierarquical list of categories, like this: 1 Category 1.1 Children 1.2 Children 1.2.1 Children Here's my code: $a = "1.1"; echo ++$a; // 2.1 $b = "1.1.1"; echo ...
0
votes
2answers
39 views

how to make the first feild(id) in a table as autoincreament when the values are passed as an array list and stored using for loop?

I am creating an android app where i need to stor a very large chunck of data in the database. As m storing the values using a for loop(because an arraylist is passed from my activity) so all the ...
-1
votes
1answer
37 views

mysql autoincrement is not sequential in innodb

Mysql autoincrmenting is not sequential. when i was trying to upload csv bulk data it's skipping some of the auto increment id The auto increment id is not sequential The db engine is innodb ...
2
votes
1answer
30 views

FireBird - serial field as in PGSQL?

PGSQL supports "serial" field type, which is converted to: colname integer DEFAULT nextval('tablename_colname_seq') NOT NULL This makes the identifier generating very easy. In the FireBird I saw ...
1
vote
1answer
39 views

how to add a class with the end increment for the number of pictures I have to a mustache template in jQuery?

I have the follow mustache template: <script id="pictures" type="text/template"> {{#images}} <li id="dndtemplate"> <img src={{img}} title={{imgnimi}} alt={{imgnimi}} ...
3
votes
1answer
117 views

How does autoIncrement work in NodeJs's Sequelize?

Sequelize's document doesn't say a whole lot about autoIncrement. It only includes the following example: // autoIncrement can be used to create auto_incrementing integer columns incrementMe: { ...
0
votes
3answers
231 views

SQL Server 2008: how to design a table with 2 primary keys and ID with autoincrement related to 1 key value

Let me explain this a bit better: I need to design a database that needs to be installed in different locations (which might or not be connected to each other). My thought was: why don't I use a ...
0
votes
1answer
64 views

Hibernate autoincrement in loadbalancing tomcats?

I have web application using Hibernate deployed in 3 load balanced Tomcats and I am frequently getting the following exception org.hibernate.exception.ConstraintViolationException: Could not execute ...
1
vote
0answers
69 views

duplicate primary key error after altering auto_increment value

I have a mysql innoDB table with over 6000 records. The primary key (ID) is set to be auto_incremented. At this time the auto_increment value was 41804. I inserted over 2000 records through insert ...
1
vote
0answers
30 views

What's the expected behavior for MySQL load data infile for auto increment field?

I have a production MySQL database, for some reason, I need to load some data into it from our development database which has similar schema. The data is output through mysql -e "select * from ...
0
votes
0answers
66 views

Failing to create an autoincrement field with adox

i'm trying to create a AutoIncrement Field with adox, visual basic and an access .mdb database. Dim col As New ADOX.Column col.Name = "Nr" col.Properties("AutoIncrement").Value = True But i'm ...
1
vote
1answer
160 views

need help assigning user inputs into an increasing string array

Basically what I am overall trying to do is: One of your professors hears of your emerging programming expertise and asks you to write a SINGLE program that can be used to help them with their ...
0
votes
1answer
51 views

column value not exceeding 255 in mysql

I'm facing a slight problem. I have a primary key ID in a table set on autoincrement which is not allowing any value over 255 to be set. How should I go about fixing this? The higher the value which ...
1
vote
0answers
40 views

MySQL's auto_increment not incrementing by 1 [duplicate]

I want auto_increment to increment by 1 each time I insert a row. It doesn't matter if I later delete a row in the middle, I always want it to increment by 1. The problem is that MySQL keeps ...
-2
votes
1answer
20 views

What happens with ID when 1 object from table in database is moved and its ID is set on auto increment?

I've made table in database so that user can put objects in database which ID will be automatically increased. Let's say that user wants to move object from database after some time while already more ...
0
votes
2answers
116 views

Update Query with LEFT JOIN , Variable and Autoincrement Using MySQL

I am stuck on a situation. Here is the table structures. default_category category_id | parent_id | name | symbol ----------------------------------------------------------- 1 ...
0
votes
2answers
52 views

MySQL/PHP How would I insert an row into mysql and increase all the auto incremented fields below by 1

say i have a table like so: id|name | ---------- 1 |fred | 2 |jim | 3 |tracy | 4 |stacy | "id" is the primary index with auto increment. I would like to add a row below "#2 - jim". I'll call ...
2
votes
1answer
209 views

MySQL Auto Increment Columns on TRANSACTION, COMMIT, and ROLLBACK

When using MySQL START TRANSACTION and the decision is made by MySQL to roll back - In the case that a table had an AUTO_INCREMENT column - does the column get... decremented during the roll back? ...
0
votes
1answer
56 views

Change values in new autoincrement field added to table from 0 to a meaningful number

After adding an autoincrement field to a table to act as a primary key, all records contain a 0 value in this field, so it is not much use for its intended purpose. New records will get a good ...
0
votes
3answers
587 views

Add Auto-Increment ID to existing table?

I have a pre-existing table, containing 'fname', 'lname', 'email', 'password' and 'ip'. But now I want an auto-increment column. However, when I enter: ALTER TABLE users ADD id int NOT NULL ...
0
votes
1answer
124 views

Autoincrement field with trigger and sequence - Check if ID is in the statement [Postgres]

I´ve got this sample from another thread and it fits perfectly on what I need to know. CREATE SEQUENCE AlimentosSequencia; CREATE TABLE alimento ( id integer NOT NULL PRIMARY KEY ,name ...
1
vote
2answers
65 views

Increment all values in mysql table

Lets say I have +-------------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | ...
-1
votes
6answers
145 views

How to view last inserted value of auto increment field

In my database, i have the field name spaj_per as an auto increment primary key. How can i display the lastest inserted value in the field spaj_per. I tried this. <? $con = ...
0
votes
2answers
106 views

Reserve a block of auto-increment ids in MySQL

I receive batches of, say, 100 items that I need to insert into three related MySQL tables: say current, recent, and historical. I want to insert each batch in each table as a group in a single ...
0
votes
1answer
192 views

autoincrement on oracle (necessary to add this statement?)

Do we need to add auto increment statement for the primary key? if so, how does it managed? I've created a table like: CREATE TABLE STUDIO (STUDIOID NOT NULL, NAME VARCHAR2(20), ADDRESS ...
1
vote
1answer
885 views

Reset autoincrement in Microsoft SQL Server 2008 R2

I created a primary key to be autoincrement. I added two rows: ID=1, ID=2 I deleted these two rows. I added a new row, but the new row's ID was: ID=3 How can I reset or restart the autoincrement ...
0
votes
1answer
387 views

Automatically set mysql autoincrement to min value

i just wondered, if there is an elegant way of automatically resetting the autoincrement of a mysql table to the lowest value according to the present content. example: mytable: 1 content of row 1 ...
1
vote
3answers
4k views

How to AUTO_INCREMENT in db2?

I thought this would be simple, but I can't seem to use AUTO_INCREMENT in my db2 database. I did some searching and people seem to be using "Generated by Default", but this doesn't work for me. ...
1
vote
1answer
152 views

Is it possible to specify what I want to auto increment?

I have a cell with the format "mm/dd/yyyy hh:mm:ss". I want to auto increment the minute, but when I manually auto increment after selecting only that cell, it increments the day. To make it increment ...
0
votes
1answer
369 views

Rails Auto-Increment Column

I asked this same question about a week ago, but I might not have been clear with what I wanted. I already have a table created that is sorted/filtered by several different select boxes. I need the ...
-2
votes
2answers
176 views

MySQL Database ID Auto- Increment [closed]

How would I make this an auto_increment column? What other fields would I have to use? I selected auto_increment from the "Extra" section, but it says I need a key??
0
votes
1answer
155 views

Get ID of autoincrement field in SQLite

I'm using SQLite database. I want make an insert and get the field ID (autogenerated) of this insert. The field ID is an autoincrement key. I'm using the statement SELECT last_insert_rowid(); ...
1
vote
2answers
300 views

Creating a .NET incrementing assembly build version in Git

How do I write a script which will create a source file containing the version number? I would like the build number (4th number in the version quadruple) to be autoincremented for each commit. I ...
0
votes
1answer
508 views

Add row in a JTable with autoincrement of the last row id

My question is: how can I implement an "Add row" button which create a new row of a JTable (which gets the data from an SQLite database) with an autoincrement++ of the last row id. The id column has ...
2
votes
3answers
97 views

Understanding MySql Auto_Increment

I have a column in a table that is auto incremented. Let's call it employee_id. Let the initial value be 1 and let it be incremented by 1 for each insertion. After inserting 10 rows, the auto ...
2
votes
1answer
281 views

Monotouch Automated Incremental Build Number with version number

Regarding Monotouch IOS development with C#: I'm trying to implement an auto incrementing build version number into my Monotouch IOS project. Something like [Major].[Minor].[Build] would be fine ...
1
vote
3answers
756 views

iOS SQLite: How to automatically set foreign key?

My app uses SQLite, and I've sorted out the create table statements. The idea is that table A and B have a one-to-many (or one) relationship, so the foreign key will be in Table B. Now I know about ...
1
vote
3answers
975 views

How to use SQL AUTOINCREMENT primary keys without excessive round trips to the database?

Say I have 10 million Customer names each associated with one or more Addresses and I want to put the data in a SQL database. I make a Customer table and an Address table. The Customer table ...
0
votes
0answers
87 views

wcf Ria, entity model , how to set value for auto increment column

I am working on a wcf ria project. I have created ADO.Net Entity Data Model from database (MySql database), and have created a Domain Service class from it. I have a table named invoice_line_item, ...
0
votes
1answer
85 views

SQLite Autoincrement reset sorting By varchar column

I filled up a database, and i want to reset the numeric autoincrement id, but I want to do leave it in the same order that I get by retrieving the items in the table sorting them by a particular ...
0
votes
0answers
268 views

C# and MySQL AutoIncrement with Prefix

i am aware that it is not possible to do a straight AutoIncrement in MySQL using prefix. I would like to achieve the following AI in one of my column. The column itself is VARCHAR(255). the prefix ...
1
vote
1answer
374 views

insert if not exist , using auto incremental primary keys. mvc3

i have a problem with auto incremental primary keys.. when im adding a student to my database, i can add the same student over and over again because the primary key of student is auto incremental so ...
0
votes
4answers
402 views

ID cannot be null (Auto Increment)

I'm using an INSERT ON DUPLICATE KEY statement for my website. It's for creating news items, so I figured I could use the same MySQL command for both creating and updating news items. However, when I ...
0
votes
1answer
659 views

What is wrong with my Sybase CREATE TABLE syntax?

What's wrong with my syntax here? I'm adhering strictly to the rules in the Sybase Reference CREATE TABLE dashlogactions ( action_id SMALLINT NOT NULL DEFAULT IDENTITY PRIMARY KEY, ...
1
vote
1answer
183 views

Is it posible that a primary key is not autoincrement?

I am trying to insert an element in a table where there are already 3 rows. Its a table called usuarios=[id (primary, autoincrement), fid, first_name, last_name....] So there are already 3 rows with ...
0
votes
1answer
838 views

Tring to do LOAD DATA INFILE with REPLACE and AUTO_INCREMENT

I am trying to load a file onto a MySQL database, having the primary key auto_incremented and I would like the data to be updated if i find any duplicate rows. However, the REPLACE keywords only works ...
3
votes
3answers
2k views

mysql ID auto increment doesn't starts from 0

i have a table with ID , this ID is auto increment and primary key ,the first time i inserted to that table , the ID starts from 0 , but after i removing all the values from that table and inserted ...
0
votes
2answers
358 views

Running out of unique IDs in sqlite database

I know that sqlite database automatically generates a unique id (autoincrement) for every record inserted. Does anyone know if there is any possibility of running out of system unique IDs in sqlite3 ...

1 2 3 4 5