S
Siddharth Parekh
Lets say I have two tables, table1 and table2 that have a one to one relationship
Table1 has two columns - number, name
Table2 has two columns - number, address
number is the primary key and is numeric format.
If i combine these two using a View having a simple SELECT statement like the following:
SELECT table1.number, table1.name, table2.address
FROM table1 INNER JOIN table2 ON table1.number=table2.number;
This will give the output in the following format:
NUMBER NAME ADDRESS
The resulting recordset can be modified but if new records are added to this, then it gives a write conflict. The same thing in a MDB works great.
Any ideas how to overcome the write conflict?
Thanks,
Sid.
Table1 has two columns - number, name
Table2 has two columns - number, address
number is the primary key and is numeric format.
If i combine these two using a View having a simple SELECT statement like the following:
SELECT table1.number, table1.name, table2.address
FROM table1 INNER JOIN table2 ON table1.number=table2.number;
This will give the output in the following format:
NUMBER NAME ADDRESS
The resulting recordset can be modified but if new records are added to this, then it gives a write conflict. The same thing in a MDB works great.
Any ideas how to overcome the write conflict?
Thanks,
Sid.