View Single Post
  #2  
Old April 28th, 2010, 11:41 PM posted to microsoft.public.access.forms
Arvin Meyer [MVP][_2_]
external usenet poster
 
Posts: 2,310
Default Upgrade questions, 2003 to 2007

There are some differences is the security models of Access 2003 and 2007,
that may affect how records are returned. You cannot really set references
in the front-end, it's the back-end that controls how data is indexed and
stored. I suggest that you continue using what works for you.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.accessmvp.com
http://www.mvps.org/access


"rivneym" u59673@uwe wrote in message news:a737b4f45d0e9@uwe...
Hi all,

Using 2007 now as a frontend with Oracle RDMS. Existing 2003 Access .mdb
is opened with the new version, 2007. However, adding of records, via a
form
or query, fails. (Note, it works fine with Access 2003.) The query
behind
the form and the other query consists of two tables with a one-to-one
relationship. (The left-side table contains a foreign key which the
right-
hand table is the parent table.) The error message is that the Access
engine
cannot find the record, in the right-side table, with key matching fields.

I have figured out a few different fixes. The first one is to change the
query's relationship to one-to-many. The results are still the same since
the many side (the right side table) is the parent table, and thus the
same
set of records are returned by the query. The other solution is to set
the
form's Recordset Type property from Dynaset to Dynaset (Inconsistent
Updates).
I'm using the first solution since I couldn't find anything on the web
about
the second solution, plus the name of the property's value explains
enough.

I have a fix but still have yet to confirm if this is the true fix.
Can't
find anything on the web. Any ideas and/or suggestions welcomed. Note:
I
also converted the database to 2007 but the issue still persists.

Regards