Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,788| Members 17,820, Newest waheguruhelpme| Online 213
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Sikh Philosophy Network » Sikh Philosophy Network » Current Affairs » Information Technology » My AutoNumber is messed up!! Starting from 1 after splitting database

My AutoNumber is messed up!! Starting from 1 after splitting database

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
Splitting a database & permissions Secret Squirrel Information Technology 6 28-Jul-2006 08:36 AM
Splitting an Access Database Lateral Information Technology 5 28-Jul-2006 08:36 AM
Pulling from a database starting with one letter? UKSBD Information Technology 3 28-Jul-2006 08:25 AM
Re: problems after splitting a database Tom Wickerath Information Technology 0 28-Jul-2006 07:59 AM
splitting database w/ different versions Susan Information Technology 2 15-Nov-2005 14:10 PM


Tags
autonumber, messed, starting, splitting, database
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:17 AM
Sierras's Avatar Sierras
Guest
 
Posts: n/a
   
   
My AutoNumber is messed up!! Starting from 1 after splitting database

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I have a table with an Auto Number as the primary key.
All was fine but at some point, the autonumber started giving numbers
starting from 1 again and is trying to increment with an addition of
a record. . Now every time you try to create a record, I get the
conflict as my primary key can not have duplicates. I'm using a split
database with a FE and BE which has the problem. The original unsplit
database is working fine.

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11020-my-autonumber-messed-up-starting-1-a.html
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11020
Any suggestions?

*








 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:17 AM
Sierras's Avatar Sierras
Guest
 
Posts: n/a
   
   
Re: My AutoNumber is messed up!! Starting from 1 after splitting database

Well it's late and instead of trying to figure out what went wrong, I
just took the easy way out and created a new database from scratch.
Then imported all the tables from the BE, renamed the new BE and then
re-linked the tables to the FE.

All is working now but I'd like to try and figure out what happened so
as to prevent it from happening again.

If anyone else ever had this happen, please let me know what you
found.

Thanks...


On Wed, 07 Jun 2006 21:00:27 -0400, Sierras
wrote:

>I have a table with an Auto Number as the primary key.
>All was fine but at some point, the autonumber started giving numbers
>starting from 1 again and is trying to increment with an addition of
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11020
>a record. . Now every time you try to create a record, I get the
>conflict as my primary key can not have duplicates. I'm using a split
>database with a FE and BE which has the problem. The original unsplit
>database is working fine.
>
>Any suggestions?

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11020
Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:17 AM
Rick Brandt's Avatar Rick Brandt
Guest
 
Posts: n/a
   
   
Re: My AutoNumber is messed up!! Starting from 1 after splitting database

Sierras wrote:
> Well it's late and instead of trying to figure out what went wrong, I
> just took the easy way out and created a new database from scratch.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11020
> Then imported all the tables from the BE, renamed the new BE and then
> re-linked the tables to the FE.
>
> All is working now but I'd like to try and figure out what happened so
> as to prevent it from happening again.
>
> If anyone else ever had this happen, please let me know what you
> found.


It's a form of corruption, known to happen occassionally, and I believe
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11020
supposed to be fixed by one or more Jet service packs that were issued for
Jet 4.0.


--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:17 AM
Tom Wickerath's Avatar Tom Wickerath
Guest
 
Posts: n/a
   
   
Re: My AutoNumber is messed up!! Starting from 1 after splitting d

  Donate Today!  
Hi Rick,

Yes, this was a problem with Jet version 4.0.2927.4 (Service Pack 3) and
earlier:

http://support.microsoft.com/?id=291162

However, one can still have a duplicate autonumber problem even with SP-8 IF
the autonumber field was created with JET SP3 or earlier. Having JET SP-8
will not prevent the problem if the field was created on another PC that was
not patched properly. The solution is to delete the autonumber field and
create a new one in it's place, with SP-8 already installed.

Sierras:
If you need to replace an autonumber field in an existing table, where there
are likely gaps in the numbers due to previously deleted records, then create
a copy of the structure of the entire table, without data. Then run an
append query, using all of the fields from the table with the bad autonumber
field (including the autonumber field) serving as the source of records.
Finally, delete the source table and rename your new table with the same name
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11020
that the source table used to have. Re-establish relationships with
referential integrity between your new table and the other table(s).


Tom Wickerath
Microsoft Access MVP

http://www.access.qbuilt.com/html/ex...tributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________


"Rick Brandt" wrote:

> Sierras wrote:
> > Well it's late and instead of trying to figure out what went wrong, I
> > just took the easy way out and created a new database from scratch.
> > Then imported all the tables from the BE, renamed the new BE and then
> > re-linked the tables to the FE.
> >
> > All is working now but I'd like to try and figure out what happened so
> > as to prevent it from happening again.
> >
> > If anyone else ever had this happen, please let me know what you
> > found.

>
> It's a form of corruption, known to happen occassionally, and I believe
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11020
> supposed to be fixed by one or more Jet service packs that were issued for
> Jet 4.0.
>
>
> --
> Rick Brandt, Microsoft Access MVP
> Email (as appropriate) to...
> RBrandt at Hunter dot com

Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 06:52 AM
21 Replies, 319 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 72 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 45 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 112 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,833 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 225 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 39 Views
sikhism How important is Matha...
By Ishna
Yesterday 19:05 PM
58 Replies, 1,026 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 62 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 43 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 45 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 408 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 46 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 07:12 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.37793 seconds with 30 queries