vote up 11 vote down star
2

Hi, this is my first question on SO, am really posting this out of desperation after searching around a lot for an answer and trying a few different things with no success.

I have an Access database where I have recently migrated the tables to SQL 2005, Access continues to function to the users as a front-end providing forms, reports, and queries.

However, since moving to the Access FE/SQL BE setup, the users have been reporting that sometimes, when they are entering a new record, they click into a subform (saving the record) or click save on the menu itself, it jumps to an existing record. The new record has been saved, but for some reason access switches to a different record as it refreshes. The user then has to close out, find the saved record, and continue editing it.

Scenario: A user is entering a quote and fills out all the quote details, customer, date, etc, then clicks in the line-items subform to add a product (or clicks save in the menu), and suddenly the quote form (and line-item subform) is showing the details of some random quote. The random quote could be recent, or from years ago, and has nothing in common with the quote they were entering.

This weird behavior only happens on inserting a new record, never on editing an existing record. Users tell me that it happens 'more often' when they go to add a new (quote, customer, whatever) after opening the database.

I have noticed it is only happening on forms that have subforms, so my first thought is that it had to do with Access sending through the subform data before the form data is saved, causing a PK violation. But this doesn't appear to be happening: there are no errors on the SQL server, and the record is successfully saved. Forcing the users to save the main form record before adding subform records (i.e. on a quote, forcing them to save the quote before they can add line items) didn't work, it just causes the jump (sometimes) on the save.

It isn't vba running on the save or on current, I have set breakpoints on all the event handlers as it jumps and no vba is being executed. Some of the 'jumping' forms have no vba on the form. But all have subforms. I suspect it has to do with record locking.

The server running the tables is SQL Server 2005, the users are using a mix of Access 2000 and 2003, mostly XP SP3 with a couple of old Win2k boxes. They are using Merge replication and a couple of users are running replicated SSEE2005 editions and subscribing to the main server. Most users are not replicated, just connecting directly to the server via ODBC or SQL native client connections. But I have verified that this is happening to all users, usually once or twice a day, and it has happened to me before. So it isn't a user issue.

The worst part about this behavior is that it only happens some of the time and I haven't managed to find a scenario that will always cause it to happen.

If anyone has experienced anything like this before, please let me know how you sorted it out, or even suggestions would be welcome. Thanks.

Update: (1/10/09) Problem solved, thanks to David Fenton. Setting the form to Data Entry mode (Form.DataEntry = true) before opening it to add records does indeed prevent the jumping. Client reports no issues at all since I changed this a week ago. Thanks for your help David, Phillipe and Tony!

flag

Are you using primary keys and a TimeStamp aka RowVersion on all tables? I assume you are using primary keys as you sound quite competent but I have to ask. – Tony Toews Sep 15 at 6:56
1  
Yes, all tables have a PK and identity. I tried adding TimeStamp on one pair of tables (the Quote and line items) and it didn't make any difference to this problem. – Dale Halliwell Sep 15 at 7:15
(Tony, you can copy your comment to clipboard, delete it and, and then replace it with a new comment with your corrections) – David W. Fenton Sep 16 at 0:57
FWIW TimeStamp columns are a good thing as far as Access is concerned. Please add those to all the tables. There are osme KB articles, etc on the topic but I don't have them right at my fingerprints. @David, thanks. I hadn't notice that little grey x before. – Tony Toews Sep 16 at 2:18

4 Answers

vote up 7 vote down check

A client is reporting occasional similar problems. It started immediately after they started using merge replication.

I've informed several contacts within the Microsoft Access product group as well as my fellow Access and SQL Server MVPs.

Please email me your email address so I can forward that to my contacts at Microsoft as I would assume they would want to contact you directly. tony at granite.ab.ca

BTW excellent trouble shooting and detailed problem description.

link|flag
Thanks Tony, email sent. – Dale Halliwell Sep 15 at 7:01
1  
Stupid question. Can you turn off merge replication for a while to see if that does indeed cause the problem? – Tony Toews Sep 15 at 20:43
1  
Question for you: Did you check the conflict viewer to see if any conflicts are logged. Comment: Something similar happens in Access when you have uniqueidentifier as primary key in sql server table, or some other field type with self generated value. Do you have int with identity as PK? Any triggers? – Tony Toews Sep 15 at 20:51
1  
Actually I'm forwarding on the comments of my fellow Access and SQL Server MVPs who have more experience in this area than I do. – Tony Toews Sep 16 at 0:39
1  
Autonumber with identity is PK, no triggers apart from the ones belonging to Merge replication – Dale Halliwell Sep 17 at 5:54
show 4 more comments
vote up 4 vote down

I'm wondering about the scenario where you are using a form to add records that has any other records for the user to jump to.

That is, I don't believe in using the same form to edit records as is used to create them.

Instead, I use an unbound dialog to collect all the required fields, insert the record in SQL, then open the main editing form to that single record (not a form with the whole table navigated to the record that was just added).

Keep in mind that in a main form/subform scenario, creating a record in the subform when the parent form is unsaved causes the parent record to be saved. You might want to check if there is any code in the Insert and Update events of the main form that would cause a requery of the main form on the insert of a new record (triggered by editing the subform).

But I would still suggest that the best architecture is to avoid this kind of possible scenario by loading only single records, so there is no other record to jump to. That would certainly limit the possibilities of where the user could end up when the problem occurs.

link|flag
"creating a record in the subform when the parent form is unsaved causes the parent record to be saved. " As soon as you click anywhere in the subform area Access will save the main record. However I generally disagree with the approach of a separate dialog. Or rather I see no reason for it. One form for inserts and updates should work and work well. And if Access has a bug in these circumstances then it should be fixed by MS – Tony Toews Sep 16 at 2:23
Unfortunately I didn't design these forms, and the users (salesmen, admin, management, engineers) are all accustomed to creation & editing in the same form. Using an identical unbound form that inserts the record in SQL as you suggest has occurred to me (actually I do this already in a number of other creation-only dialogs) only I don't know how I would handle populating the subform items, and I would like to avoid having to rewrite all these forms if I don't have to. I will check those events, but I know there are some forms that exhibit this behavior that have no vba. Thanks – Dale Halliwell Sep 16 at 2:24
"Some forms that exhibit this behavior have no vba" Ok, that's good to know. – Tony Toews Sep 16 at 19:33
1  
What about using the form in ADD mode? When you open it in ADD mode, there is one blank new record loaded in the form. When you save, you can change out of Add mode, but you'll still only have the single record loaded, so you shouldn't have something happening that causes you to jump to another record, because there is no other record to jump to. – David W. Fenton Sep 17 at 4:02
1  
@dfenton tried that, no change. Also tried opening the form in "Data Entry" mode on adds, still does it. – Dale Halliwell Sep 20 at 6:51
show 5 more comments
vote up 1 vote down

I have seen behavior 'like' this when there are multiple ways of doing the same thing. (i.e. tabbing out of the textbox triggering the lostfocus vs clicking a button) So make sure that this isn't the case, if you haven't already.

link|flag
vote up 4 vote down

It definitely sounds like a record locking issue. Are you using autonumbers as PK? Have you tried 2 computers adding a record on the same form at the same time (meaning one of them will fire the insert event while the other has added a new record on the form one but is still editing it)?

Could you check in a way or another if the PK of the inserted record after insertion in the table stays similar to the PK given before the insertion (by adding for example a few 'debug.print's to your code)?

A scenario could be 2 pending inserts been given by the machine the same PK, the second one being then automatically changed at insert time, resulting in your form loosing the 'active' record.

link|flag
1  
Thanks that is a good suggestion Philippe, but I don't think it could be the cause of the problem. Yes, PK is autonumber on both the objects in form and in the subform but I don't think it is PK because it is also happening on replicated clients, not only are they not on the network, they have partitioned PK segments. – Dale Halliwell Sep 15 at 16:10
Then I am convinced it has something to do with this autonumber issue. By the way, partitioned autonumber PK segments are really a pita! I guess autonumbers were inherited from an Access upgrade to SQL server. – Philippe Grondier Sep 15 at 20:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.