Greetings,
I`m having a curious situation in MS Access 2003 while editing records in a cross table query.
Tables are:
Table1 (field1_1, field1_2, field1_3)
Table2 (field2_1, field2_2, field2_3)
field1_1 and field2_1 are key (id, autonumeric) fields
Fields field1_2, field1_3, field2_2, field2_3 are varchar(512)
The Query is:
The tables are in a SQL 2008 server and the MSAccess file is a project linked to the SQL Database using classic ODBC.
In the beginning I can't edit any record from the output. Later, when I sort the output (button A->Z in access) any varchar field in any record could be edited.
Any clue?
Thank you, best regards!
P.
I`m having a curious situation in MS Access 2003 while editing records in a cross table query.
Tables are:
Table1 (field1_1, field1_2, field1_3)
Table2 (field2_1, field2_2, field2_3)
field1_1 and field2_1 are key (id, autonumeric) fields
Fields field1_2, field1_3, field2_2, field2_3 are varchar(512)
The Query is:
Code:
Select field1_1, field1_2, field1_3, field2_1, field2_2, field2_3 from Table1 inner join Table2 on Table1.field1_1 = Table2.field2_1
In the beginning I can't edit any record from the output. Later, when I sort the output (button A->Z in access) any varchar field in any record could be edited.
Any clue?
Thank you, best regards!
P.
Comment