Is there a solution to this?
- From: Siddharth Parekh<skparekh@xxxxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 5 May 2005 15:58:46 -0500
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.
.
- Follow-Ups:
- Re: Is there a solution to this?
- From: James Goodman
- Re: Is there a solution to this?
- From: J. M. De Moor
- Re: Is there a solution to this?
- Prev by Date: Re: ADP or MDB - which is a better front end for SQL Server?
- Next by Date: Re: ADP or MDB - which is a better front end for SQL Server?
- Previous by thread: convert Time
- Next by thread: Re: Is there a solution to this?
- Index(es):
Relevant Pages
|