Re: Is there a solution to this?
- From: "James Goodman" <jamesATnorton-associates.co.ukREMOVE>
- Date: Fri, 6 May 2005 14:25:20 +0100
An INSTEAD OF trigger might be your solution:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/createdb/cm_8_des_08_49kj.asp
--
Cheers,
James Goodman
"Siddharth Parekh" <skparekh@xxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:e%23$aAVbUFHA.3076@xxxxxxxxxxxxxxxxxxxxxxx
> 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.
.
- References:
- Is there a solution to this?
- From: Siddharth Parekh
- Is there a solution to this?
- Prev by Date: Re: Is there a solution to this?
- Next by Date: Re: Not Responding Message
- Previous by thread: Re: Is there a solution to this?
- Next by thread: Re: n:m in forms - best practices?
- Index(es):
Relevant Pages
|