Tagged Questions
1
vote
2answers
74 views
Oracle delete performance
Say I have two tables:
create table parent (
id number not null,
constraint parent_pk primary key(id),
)
create table child (
id number not null,
parent_id number not null,
constraint ...
1
vote
3answers
532 views
Oracle: FK on union of two tables?
I have a situation which (simplified) looks like this:
Table UNITS has a PK on UNITS.NAME. (unit name, varchar(12))
Table DEPTS has a PK on DEPTS.NAME. (dept name, varchar(12))
I want to create a ...