| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: Basic question?What 's the key if there 's no FD(Functional Dependencies)?
paul c wrote:
> Aloha Kakuikanu wrote:
> > NENASHI, Tegiri wrote:
> >> Jan Hidders wrote:
> >>> Do you know of any results that might be interesting for database
> >>> theory and could not already be shown with good old set theory?
> >> The categorical sketches to use for universal view updatability:
> >>
> >> Michael Johnson and Robert Rosebrugh.
> >> Universal view updatability
> >
> > They claim to solve view updatability? OK, I have a table RealPeople
> > with one attribute Name and the view
> >
> > CDTPosters =
> > RealPeople
> > union
> > {(name=TeGiriNeNashi)}
> >
> > and a constraint
> >
> > RealPeople
> > intersect
> > {(name=TeGiriNeNashi)}
> > =
> > {}
> >
> > Is the CDTPosters view updatable?
>
I cannot get rid of the constraint completely, but can rewrite the problem to make it look "smaller":
select name, 'U' as typ from (
select name from RealPeople
union
select 'TeGiriNeNashi'
)
union
select name, 'I' as typ from (
select name from RealPeople
intersect
select 'TeGiriNeNashi'
)
check typ = 'U' Received on Tue Nov 07 2006 - 12:20:10 CST
![]() |
![]() |