Nouveau post: créer un synonyme pour un schema (non supporté)

Nouveau post sur mon blog à dbi services: Create schema synonym in Oracle (unsupported feature)

SQL> create schema synonym DEMO2 for DEMO;
Schema synonym created.

SQL> create table DEMO2.MYTABLE as select * from dual;
Table created.

SQL> select * from DEMO2.MYTABLE;

D
-
X

SQL> select * from DEMO.MYTABLE;

D
-
X

Laisser un commentaire