Editing linked tables

A

AH

Hello,

I have linked a CSV file to my Access 2002 database. When
I try to change any cell in any record in Access I get
this error:

"Updating data in a linked table is not supported by this
ISAM."

I remember a while back I could edit linked tables in
Access. What did I forget? Thanks for the help.
 
J

John Nurick

I don't think it's ever been possible to edit linked CSV files. The
problem is that any edit that changes the length of the data in any
field requires the whole of the rest of the file to be rewritten, and
this is impractical except with small files.

So for manual editing it's simplest to import the data to an Access
table, edit it, and export again. For editing under program control,
either link the file and use a make-table query to create the edited
file, or else write VBA code to read the file line by line, editing and
outputting the lines to a new file.

Hello,

I have linked a CSV file to my Access 2002 database. When
I try to change any cell in any record in Access I get
this error:

"Updating data in a linked table is not supported by this
ISAM."

I remember a while back I could edit linked tables in
Access. What did I forget? Thanks for the help.

John Nurick [Microsoft Access MVP]

Please respond in the newgroup and not by email.
 
A

AH

Thanks John, I guess importing the file is the simplest
solution around this problem.
-----Original Message-----
I don't think it's ever been possible to edit linked CSV files. The
problem is that any edit that changes the length of the data in any
field requires the whole of the rest of the file to be rewritten, and
this is impractical except with small files.

So for manual editing it's simplest to import the data to an Access
table, edit it, and export again. For editing under program control,
either link the file and use a make-table query to create the edited
file, or else write VBA code to read the file line by line, editing and
outputting the lines to a new file.

Hello,

I have linked a CSV file to my Access 2002 database. When
I try to change any cell in any record in Access I get
this error:

"Updating data in a linked table is not supported by this
ISAM."

I remember a while back I could edit linked tables in
Access. What did I forget? Thanks for the help.

John Nurick [Microsoft Access MVP]

Please respond in the newgroup and not by email.
.
 

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