a database constraint that automatically increases from the last record when making an INSERT
0
votes
1answer
8 views
About race conditions when using “AUTO_INCREMENT FROM information_schema.TABLES” inside a trigger
Details
Using MySQL (InnoDB)
Referring to the following post: Can you access the auto increment value in MySQL within one statement?
Background
I need to use the generated ID (PK) in an BEFORE ...
0
votes
1answer
23 views
Auto Increament a column based on Another column in Sql server 2005?
I have a two primary key Columns in a table. the second column based on first column. i show you the figures of them, see the splr_Slno is Based on the splr_Id.
i show you another figure for the ...
1
vote
2answers
35 views
ReNumber Auto Increment column in SQL
Heres my problem.
I have an autoincrement primary key in sql table lets say table look like this
ID | Name|
1 John
2 Jack
3 Bill
4 Joe
Then i delete row 2 Jack
ID | Name|
...
0
votes
0answers
23 views
change auto_increment within same table using subquery mysql
I am using mysql. I have a database table with auto_increment counter set. Now because of a requirement I need to leave starting 100 ids free and move all existing records starting from 101, so ...
-3
votes
2answers
21 views
PHP Auto_inc form [closed]
I have a form with an auto_inc field. The form on submit creates in the table the tuple - with the auto_inc field. What I then need to do is pull the auto_inc field back into the form for processing ...
1
vote
1answer
30 views
Find out if ID was auto-incremented in before insert-trigger?
In MySQL I need to know if it's possible in a BEFORE INSERT trigger to find out if the primary key ID (NEW.Id) is being automatically generated by the auto-increment value or if the ID was manually ...
0
votes
1answer
41 views
Custom auto-increment field in postgresql (Invoice/Order No.)
The baseline requirement is to create an order number in the format:
(M)M-SSS
Where MM represents the current month and SSSS represents the order sequence for that month. For example 1-002 would ...
1
vote
1answer
21 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 ...
0
votes
2answers
39 views
How to generate auto increment field in select query
For example I have a table with 2 columns, first_name and last_name with these values
Ali Khani
Elizabette Amini
Britney Spears
,...
I want to write a select query that generate ...
2
votes
3answers
42 views
Pyramid Pattern using a Loop;
Output should be :
1
12
123
1234
12345
123456
1234567
12345678
123456789
1234567890
12345678901
123456789012
This is the starting code I would use :
import java.util.Scanner;
public class Pyramid ...
-1
votes
0answers
41 views
Auto increment with a query
How can I change a table to disable Auto increment for a column, and how do I change it to enable it again?
People register in my gameserver, and it inserts a user account into the table "users". 20 ...
5
votes
1answer
63 views
Get all inserted IDs when inserting multiple rows using a single query
I've already looked at other answers and I still feel that my question is relevant and deserves a separate entry.
I have a table named settings(which stores user settings) and I have to insert ...
-4
votes
0answers
29 views
Query: auto increment off, query, auto increment on [closed]
I've been googling, but I haven't found anything except for how to change the AI key.
I want a cronjob to a file that does this every five minutes:
Turn off auto increment
Run a query
Turn on auto ...
0
votes
1answer
30 views
How can i add optional directory for bmp.screenshotsave
I need help please. I want to implement the ability to choose a folder before saving screenshots.
This is my working code that I have created:
bmpScreenshot.Save("C:\\test\\pictures\\scr_(" + pict_no ...
0
votes
0answers
41 views
Button to add rows to html table, and content
I have a table on my website which i use as a navigation. My pages are stored in a database and the links just call the new content into the content div, using the primary key id.
I have now added ...
0
votes
1answer
19 views
composite primary key and autoincrement column but NOT primary key
I'm trying to achieve this:
INSERT INTO `tbl_result` (`var1`, `var2`, `var3`, `year`, `result`)
VALUES (%f, %f, %d, %d, %f)
ON DUPLICATE KEY UPDATE result=%f;
These are results of a realtime ...
1
vote
2answers
16 views
What value can I set MySQL AUTO_INCREMENT to in order to reset it to the next available value
I have a table with indexed IDs like:
ID Name
1 abc
2 def
4 ghi
9 jkl
10 mno
11 xyz
The AUTO_INCREMENT value is siting at 12 in this example.
If I delete the 2 rows with IDs 10 and 11, would ...
1
vote
2answers
41 views
Create a computed column based on another column in MySQL
I have a 2 columns in my table: a varchar(8) and an int.
I want to auto-increment the int column and when I do, I want to copy the value into the varchar(8) column, but pad it with 0's until it is 8 ...
-1
votes
1answer
69 views
how to auto increment primary key in visual studio built in sql server? [closed]
i am using visual studio 2010 premium. and i created a database by using visual studio database tool. i set a field as primary key and i want to make it auto incremented. but when i look at the ...
2
votes
1answer
99 views
Haskell - Incrementation fails
I'm in a big trouble with incrementation of a counter in this code. It doesn't increment.
Edit: It works now fine!
Could you please tell me where the problem ist and how can I solve it?
...
0
votes
1answer
29 views
Auto_increment in oracle
I am student
i doing assignement , do auto increment
How to create an auto increment in Oracle ?
CREATE TABLE mua_thi
(
mamuathi varchar2(10) not null,
check(mamuathi like 'MT%')
)
mamuathi = ...
0
votes
0answers
27 views
mysql load data local infile command issue:autoincrement interruption
i load data from csv file;but there is no continuity between two import operations
two import operations one from 30 to 34 the other from 37 to 41
30,31,32,33,34,-----37,38,39,40,41
what about ...
0
votes
1answer
42 views
MySQL: One Auto Increment ID for every entities in the database
i'm working on a social network. With activity (like, comment, follow, post, etc...), user, page-to-follow, album, photo and some other thing.
Now, one of the most important things in a social ...
0
votes
1answer
39 views
Strictly auto-increment value in MySQL
I have to create a MySQL InnoDB table using a strictly sequential ID to each element in the table (row). There cannot be any gap in the IDs - each element has to have a different ID and they HAVE TO ...
0
votes
0answers
31 views
override DoDML in ADF to make auto-increment
I'm using ADF and I'm trying to insert users in a mysql database. in aim to do an auto-incriment I overide the method DoDML
but I'm getting this error in the second try
Too many objects match the ...
1
vote
2answers
35 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
20 views
increment existing db columns
I am trying to make a exact copy of a table but change the values of 2 columns. Basically I have 800 entries in the db table and need 800 more but i need the value of one of the columns (Set_id to be ...
3
votes
1answer
146 views
Using Auto Increment ID with ASP.NET checkbox list
First and foremost, I'm pretty new to programming, so attention to detail is appreciated.
I've currently got an asp checkbox list that receives data from an SQL table. I'm encountering a problem ...
0
votes
1answer
172 views
Set value for SQL Server database table auto increment field
I am using Microsoft SQL Server 2008. In database I have a table with an auto increment field (ID). I already have two rows inserted in the table, so the ID of the next row will be 3.
What I want to ...
0
votes
2answers
63 views
Entity Framework related objects insertion with stored procedure and auto_increment field
I have a problem inserting a related row through Entity Framework 5. I'm using it with RIA Services and .NET Framework version 4.5. The database system is MySQL 5.6. The connector version is 6.6.5.
...
0
votes
1answer
44 views
Multi-row action for Instead of trigger SQL Server
Scenario/background:
I am trying to create a table of "Tests". For purposes of this question my table will only have 5 columns defined as follows:
CREATE TABLE TestTable
(
Id ...
1
vote
3answers
112 views
jQuery how to add index number dynamically to a table
i have created a table and i can add and remove rows using jQuery when a checkbox is checked. My question here is, how can i add an index number at the first column dynamically?
my table:
...
0
votes
1answer
30 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 ...
0
votes
3answers
75 views
Duplicate primary key exception MSSQL server 2008
I use MSSQL server 2008 as a database for my web application (JIRA) , Few days back I had inserted some values through database . Now when I try to add values through the UI I get the following ...
0
votes
9answers
94 views
MySQL - how to know the auto increment id of row
I want to insert data into a mysql database with orders for my site.
So i store the username and an auto increment order number in the database.
The question is, how i extract the order number out ...
0
votes
1answer
67 views
MySQL: Is AUTO_INCREMENT always unique now?
I have code created in time of MySQL 3.23.23
At that time MySQL AUTO_INCREMENT reused smallest released AUTO_INCREMENT values.
It could generate
100, 101, 102, 103,
delete 101
101, 104, 105
and ...
1
vote
2answers
78 views
C increment counter in struct
I'm doing a project where I read words from a file, add them into a linked list and then count the frequencies in which the words occur. My program is reading the words into the linked list, but it's ...
0
votes
2answers
69 views
MySQL: Auto increment temporary column in select statement
How do I create and auto increment a temporary column in my select statement with MySQL?
Here is what I have so far:
SET @cnt = 0;
SELECT
(@cnt =@cnt + 1) AS rowNumber,
rowID
FROM myTable
...
0
votes
2answers
196 views
Auto-generating a unique varchar field - mySQL, Java, Hibernate
Background : I have a database table called Contact. All users of my system have details of their contacts in this table including a firstname, a lastname, and also a varchar field called 'UniqueId'. ...
0
votes
0answers
70 views
c# sqlite last_insert_rowid() always returns 0 with vici
In my windows phone 7 application, I'm inserting a new row and I want to retrieve the id of the new record that is inserted.
I've read about last_insert_rowid() in sqlite and that it returns the id ...
0
votes
1answer
21 views
Squeryl get value of serial
I insert a new row into a database and its id is auto-incremented ("serial"). How can I get the value of the id after insertion? Currently, I am using the following workaround:
inTransaction {
...
3
votes
2answers
75 views
Get current AUTO_INCREMENT value for any table [duplicate]
How do I get the current AUTO_INCREMENT value for a table in MySQL?
edit - changed title
3
votes
1answer
251 views
MYSQL SELECT MAX(id) + 1 where id < 1000
I need to use something like:
INSERT into tablename(id)
SELECT max(id) + 1
FROM tablename
where id is less than 1000 and if max(id) = 1000 insert next id as 1, so that the column fills ...
0
votes
3answers
98 views
Mysql / php - id numbers reached 9999 and started counting from 0001
I have a PHP website which takes customer applications. Each application is given an ID number which is incremental.
Recently the site reached application id number 9999 but instead of continuing on ...
0
votes
1answer
88 views
in MySQL I can't set primary key as auto_increment (plus automatically says datatype (11))
I have a table and its primary key is Measurement_Id I want it to be integer and auto_increment but when I choose Int and click apply it automatically turning to (11) not to int. Just says (11) as ...
2
votes
3answers
35 views
database memory wastage after deletion
i have 30 or even more than this tables and all tables have their primary key set to auto-increment so whenever i perform delete operation like deleting 30 records from 10 tables then after deletion ...
-1
votes
1answer
68 views
Mysql Auto-Increment Composite [duplicate]
I am trying to get the following to occur with my InnoDB using auto-increment
ID | AI
1 1
1 2
1 3
2 1
2 2
2 3
How do I set this up? I tried setting both as the PK but that didn't ...
0
votes
1answer
154 views
How to generate an alphanumeric ID in java?
I have a table named GROUPS which has a column GROUP_ID whose values are
GRP001, GRP002, GRP003
and so on. Now every time I insert a new row I have to insert it with a
(current) GROUP_ID= ...
0
votes
3answers
268 views
Can't insert into mysql Auto Increment row from PHP, but can insert manually from phpmyadmin with same statement
So my problem here is that:
I cannot insert into my auto incremented column from my php
(unless I set the insert values to: '','','','$postdate','posttime').
HOWEVER: When I used the DEBUGGED ...
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 ...




