1
vote
1answer
12 views
How to define an auto-increment number for LDAP structure?
Hi all,
I have one attribute (groupIDNumber), I want to make it work as auto-increment number?
How can we define that attr?
Thank for your help,
-nm
0
votes
3answers
61 views
How can I handle the problem whe AUTO_INCREMENT hit its limit?
Is there any good practice for this?
I wish I could solve the problem when primary key hit the limit and not to avoid it. Because this is what will happen in my specific problem.
…
0
votes
1answer
8 views
How to increase the size of a shape nudge with each new slide in Power Point VBA?
This code creates a string of 10 slides, in which each next slide's 2 shapes (number 1 and number 3) are nudged a bit in relation to similar shapes in the previous slide, while one …
0
votes
0answers
64 views
[jQuery] Next and Previous Slide Button Functionality i++, i--
Hi Ya'll,
I had a great experience asking a question last time and thought I'd come back for more help. You guys are wonderful. Thank you in advance.
I am working with a featur …
0
votes
2answers
47 views
How to Insert an incremental variable with Javascript/Jquery?
This, I'm sure is a pretty basic question about JavaScript, so apologies in advance.
I have simple unordered list:
<ul>
<li><a href="">Item number 1</a&g …
2
votes
7answers
117 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 …
0
votes
4answers
73 views
Auto increment Id’s in .net
We need to store xml file in file system.
The xml files should have a uniqueId ranging from (00000001 to 99999999)
Is there a way to auto increment the ids for any new xml generate …
0
votes
3answers
863 views
SQL-How to Insert Row Without Auto incrementing a ID Column?
I have a table that has a forced auto increment column and this column is a very valuable ID that is retained through out the entire app. Sorry to say it was poor development on m …
0
votes
0answers
26 views
mysql cluster auto increment out of sync
Hi All,
I have two mysql cluster data nodes as Master and slave. But after certain number of rows there is difference between two auto_increment values from one node to another.
…
0
votes
2answers
40 views
Increase increment size to match GUID advantage
Hi,
I've been thinking of implementing this system, but can't help but feel there's a catch somewhere. One of the points of using GUID over incrementing int is that, in the futu …
0
votes
2answers
147 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 f …
0
votes
1answer
67 views
How to turn off auto_increment in Rails Active Record
Is it possible to create primary key without auto_increment flag in ActiveRecord?
I can't do
create table :blah, :id => false
because I want to have primary key index on th …
1
vote
3answers
70 views
Set AUTO_INCREMENT starting value in a InnoDB table to zero?
Is there any to get the an AUTO_INCREMENT field of a InnoDB to start counting from 0 not 1
CREATE TABLE `df_mainevent` (
`idDf_MainEvent` int(11) NOT NULL AUTO_INCREMENT,
PRI …
0
votes
3answers
25 views
MySQL - second sequence in table (e.g. by category)
Hi all,
I'm trying to find the most efficient way to do something and would appreciate your advice!
I have a table with the following columns:
id
category
category_sequence
othe …
0
votes
4answers
73 views
Is there a way to emulate auto_increment on a second column in MySQL?
I think this is more clear than my last version:
I have a table that already has a PK field starting with 1 that is already set for auto-increment. I would like to add a new field …
