Hi,
ALTER TABLE TABLE1 ADD (
CONSTRAINT FK_TABLENAME FOREIGN KEY (TABLENAME)
REFERENCES USER_TABLES(TABLE_NAME) );
This gives me insufficient privileges - but I thought User_tables was a user accessible table.
Is it possible to do this ?
Rich.
Programmers are tools for converting caffeine into code
ALTER TABLE TABLE1 ADD (
CONSTRAINT FK_TABLENAME FOREIGN KEY (TABLENAME)
REFERENCES USER_TABLES(TABLE_NAME) );
This gives me insufficient privileges - but I thought User_tables was a user accessible table.
Is it possible to do this ?
Rich.
Programmers are tools for converting caffeine into code