Access 2000 to 2003 upgrade = recordset is not updatable

P

Peter B.

Tested moving application in Access 2000 to Access 2003

Access 2000 - Office XP on Windows XP
Access 2003 - Office 2003 on Windows 2003 Enterprise Server

Application first written in Access2.
Upgraded to Access 95.
Upgraded to Access 97.
Upgraded to Access 2000.
Additional objects added throughout the upgrades.
Existing objects modified.
Issues created from previous upgrades identified and resolved.

The data tables are in a separate mdb file located on a file server.
All other objects are in a second mdb file distributed to multiple desktops.

Tested upgrading to Access 2003.
This resulted is being unable to add new record or edit existing record in
any existing form.
The department has shelved plans to upgrade Office 2000 to Office 2003 until
matter resolved.

Action:
Click a command button with following code:
Me.RecordSource = "tblDailyNorthEast"
DoCmd.GoToRecord , , acNewRec

Result:
Returns the following error:
Run-time error '2105':
You can't go to the specified record.

Also read in status bar:
This recordset is not updatable.



Comments or assistance in this matter is appreciated.
 
D

david epsom dot com dot au

Every time anyone has ever asked me about this problem,
it has always been because the data file was read-only.
 
P

Peter B.

Thanks. That is the problem. Not certain how to undo this read-only setting
though.
Considered the options in the following link
http://office.microsoft.com/en-us/assistance/HA010345391033.aspx,
but none applied. I have two lab machines, both with Windows 2003
Enterprise Server and Office 2003 plus SP1 installed plus several other
applications.
The principal difference between the two servers is one has MSSQL 2000 SP3
and the other has IBM DB2 v8.1 Enterprise.

The MS Access database application was installed this past week on both
machines.
The result was the data application was fully working
on the MSSQL box, and read-only on the IBM DB2 box.

Is there some security setting that may be interacting with MS Access?
Any other thoughts are welcomed.

Again thanks for the help.
 
D

david epsom dot com dot au

Access uses the file-server database semantics, so it
is subject to your file-server permissions. You can
check that your user has permission to add/edit/delete
a text file in the database folder. If that works,
try getting your user to copy the database file (to
change file ownership), and see if that helps.

(david)
 
S

shawn.stanaland

It almost sounds like there is something wrong with the
links. Did you try a refreshlinks?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top