473,386 Members | 1,819 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Autonumber mess, figure out the number

I am in autonumber hell, it is important for me to get the AutoNumber
even in case of previous deleted records, and I cant get the value
through a 'test' insert and then delete method. There is no VBA
function that has that value in memory somewhere. That would be the
ideal.

For example:

AutoNumber-Field:
1
2
3
4
5 *-
6 *---- I need to delete these records
7 *-
8 *
9 *

*Delete*
so now I have

1
2
3
4
--> Next insert
10

From the example above, I really need to get that value '10' without
performing a 'test' insert, I was thinking of using a meta-table or
something, other than that I think I have tried everything, any ideas?
Nov 13 '05 #1
8 1869
bigbinc, You cannot reclaim those lost autonumbers nor should you want/need
to. This number should only serve to ensure the uniqueness of a record and
nothing else. You can design/create your own tracking number using other
functions/methods. More info here
http://www.mvps.org/access/general/gen0025.htm

--
Reggie

----------
"bigbinc" <bi*****@hotmail.com> wrote in message
news:d1**************************@posting.google.c om...
I am in autonumber hell, it is important for me to get the AutoNumber
even in case of previous deleted records, and I cant get the value
through a 'test' insert and then delete method. There is no VBA
function that has that value in memory somewhere. That would be the
ideal.

For example:

AutoNumber-Field:
1
2
3
4
5 *-
6 *---- I need to delete these records
7 *-
8 *
9 *

*Delete*
so now I have

1
2
3
4
--> Next insert
10

From the example above, I really need to get that value '10' without
performing a 'test' insert, I was thinking of using a meta-table or
something, other than that I think I have tried everything, any ideas?

Nov 13 '05 #2
bi*****@hotmail.com (bigbinc) wrote in message news:<d1**************************@posting.google. com>...
I am in autonumber hell, it is important for me to get the AutoNumber
even in case of previous deleted records, and I cant get the value
through a 'test' insert and then delete method. There is no VBA
function that has that value in memory somewhere. That would be the
ideal. From the example above, I really need to get that value '10' without
performing a 'test' insert, I was thinking of using a meta-table or
something, other than that I think I have tried everything, any ideas?


You misunderstand the purpose of an autonumber. An autonumber is only
guaranteeed to be unique. That's its sole purpose. If you need to
force the numbers to be sequential and fill in gaps where you've
deleted records, then you'll have to roll your own method.
Nov 13 '05 #3
Perhaps you're trying to use autonumber for something it is not
designed for. My recommendation would be to use autonumber as a unique
record key only, and if you need a consecutive number field for some
other purpose, then create one and populate it yourself on record
insert.

Hope this helps,

Peter De Baets
Peter's Software - MS Access Tools for Developers
http://www.peterssoftware.com

bi*****@hotmail.com (bigbinc) wrote in message news:<d1**************************@posting.google. com>...
I am in autonumber hell, it is important for me to get the AutoNumber
even in case of previous deleted records, and I cant get the value
through a 'test' insert and then delete method. There is no VBA
function that has that value in memory somewhere. That would be the
ideal.

For example:

AutoNumber-Field:
1
2
3
4
5 *-
6 *---- I need to delete these records
7 *-
8 *
9 *

*Delete*
so now I have

1
2
3
4
--> Next insert
10

From the example above, I really need to get that value '10' without
performing a 'test' insert, I was thinking of using a meta-table or
something, other than that I think I have tried everything, any ideas?

Nov 13 '05 #4
"Reggie" <No**********@NoSpamsmittysinet.com> wrote in message news:<9v********************@comcast.com>...
bigbinc, You cannot reclaim those lost autonumbers nor should you
From the example above, I really need to get that value '10' without
performing a 'test' insert, I was thinking of using a meta-table or
something, other than that I think I have tried everything, any ideas?


I just performed a null insert and then got the value of the
autonumber after the insert and then performed a delete. I didnt want
to do that, but whatever.
Nov 13 '05 #5
in**@peterssoftware.com (Peter De Baets) wrote in message news:<f5**************************@posting.google. com>...
Perhaps you're trying to use autonumber for something it is not
designed for. My recommendation would be to use autonumber as a unique
record key only, and if you need a consecutive number field for some
other purpose, then create one and populate it yourself on record
insert.

Hope this helps,

Peter De Baets
Peter's Software - MS Access Tools for Developers
http://www.peterssoftware.com

bi*****@hotmail.com (bigbinc) wrote in message news:<d1**************************@posting.google. com>...
I am in autonumber hell, it is important for me to get the AutoNumber
even in case of previous deleted records, and I cant get the value
through a 'test' insert and then delete method. There is no VBA
function that has that value in memory somewhere. That would be the
ideal.

For example:

AutoNumber-Field:
1
2
3
4
5 *-
6 *---- I need to delete these records
7 *-
8 *
9 *

*Delete*
so now I have

1
2
3
4
--> Next insert
10

From the example above, I really need to get that value '10' without
performing a 'test' insert, I was thinking of using a meta-table or
something, other than that I think I have tried everything, any ideas?


Hmm, interesting, I didnt design the database, I just have to work
with it, ideally I need the autonumber-value to link with other tables
and that is why I need to find that value. I figure out the problem,
but wouldnt you agree if I can gather information through GUIDs on
external registry values or build DirectShow movies into an access
database, wouldnt it make sense to have some kind of COM function to
find just a simple value. Obviously the value is stored somewhere,
and I see this question asked all the time, so it is not an insane
idea.
Nov 13 '05 #6
In message <d1**************************@posting.google.com >, bigbinc
<bi*****@hotmail.com> writes

Hmm, interesting, I didnt design the database, I just have to work
with it, ideally I need the autonumber-value to link with other tables
and that is why I need to find that value.


How about creating a query that links the tables and then updating that.
You wouldn't need to know what the value of the Autonumber filed is.

--
Bernard Peek
London, UK. DBA, Manager, Trainer & Author. Will work for money.

Nov 13 '05 #7
Bernard Peek <ba*@shrdlu.com> wrote in message news:<oC**************@shrdlu.com>...
In message <d1**************************@posting.google.com >, bigbinc
<bi*****@hotmail.com> writes

Hmm, interesting, I didnt design the database, I just have to work
with it, ideally I need the autonumber-value to link with other tables
and that is why I need to find that value.


How about creating a query that links the tables and then updating that.
You wouldn't need to know what the value of the Autonumber filed is.

I have two tables, one is a link to the secondary-table, the
secondary-table contains the autonumber.

TABLE-PRIMARY:

[Auto-#] [We set the all the values in this table(i.e. 1
1 )]
1 -> records in table-secondary: 1-1
-> records in table-secondary: 1-2
-> records in table-secondary: 1-3
2 -> records in table-secondary: 2-1
-> records in table-secondary: 2-2
-> records in table-secondary: 2-3

3 ...
4 ...

5 ...

if we delete records 3 and 4 and 5, on the next insert,

*now insert*

6 -> records in table-secondary: 6-1
-> records in table-secondary: 6-2
-> records in table-secondary: 6-3

This is ideal, now assuming I cant change the structure of the table(I
can create meta-data tables), how would I get the value '6', (I
currently perform a null insert-delete and get the expected value, for
example '7'[skips 6])

I guess, the table should be setup with my own custom counter and that
should link back to the secondary-table, but the link(primary-table)
is on the autonumber.

if I perform 'select max auto-field' then I would get the value
'3'(wrong), so when I insert a record the link will be thrown off.

[Auto]
6 -> records in table-secondary: 3-1(wrong)
-> records in table-secondary: 3-2(wrong)
-> records in table-secondary: 3-3(wrong)
What do you think I could do that would be a better solution than what
I have.
Nov 13 '05 #8
In message <d1**************************@posting.google.com >, bigbinc
<bi*****@hotmail.com> writes


What do you think I could do that would be a better solution than what
I have.


I'm still trying to work out why you need to know the value in the
autonumber field. If you create a query that is based on the primary and
secondary tables and linked via the autonumber field then you know that
the same value will be used in each table, without needing to know what
that value is.

Is there some other reason why you want to know the value?

--
Bernard Peek
London, UK. DBA, Manager, Trainer & Author. Will work for money.

Nov 13 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

33
by: Lee C. | last post by:
I'm finding this to be extremely difficult to set up. I understand that Access won't manage the primary key and the cascade updates for a table. Fine. I tried changing the PK type to number and...
4
by: DHRRush | last post by:
I have a simple complaint tracking Db with one main table and one main form for entering data. I need for the users to be able to see the record number for future reference when they come back to...
0
by: Zammy | last post by:
I have a split database with the backend on a server and sometimes when the data is saved from a form the autonumber populates the autonumber field and the account number field in the table. I have...
11
by: Alan Mailer | last post by:
A project I'm working on is going to use VB6 as a front end. The back end is going to be pre-existing MS Access 2002 database tables which already have records in them *but do not have any...
3
by: Ron | last post by:
Hi All, Okay, here's the deal: Access2000/WinXP. Have a database that's split, FE/BE with multiple users having FE and one of those users also has BE (still split though...). Have a form on...
4
imrosie
by: imrosie | last post by:
Hello All, (newbie)...I'm working on an Ordering app using the typical tables (customers, orders). I have a Search form to find existing customers prior to entering a new order. On the search form...
7
imrosie
by: imrosie | last post by:
Hello all, My Customer table with Autonumbers used as the customer account number. There are two main forms (Order frm, Customer frm); the Customer's account number displays in a bound control on...
5
by: jnice814 | last post by:
I am trying to create an AutoNumber that will begin at a number that I specify. I have followed all instructions in MS Access Help, but it is still not working. I continue getting an error message...
1
by: lawitt | last post by:
I have a MakeTable query whose resulting table i'm using in a crosstab query. The fields in the crosstab are constantly changing (weekly), so my ultimate goal has been to somehow create a dynamic...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.