Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Samrat.
Asked: May 20, 2020 - 7:58 am UTC
Last updated: May 21, 2020 - 9:49 am UTC
Version: 12c
Viewed 1000+ times
grant dba to other_user identified by other_user; create table other_user.t ( c1 int ); insert into other_user.t values ( 42 ); select * from other_user.t; C1 42 create synonym t for other_user.t; select * from t; C1 42
drop synonym t ; alter session set current_schema = other_user; select * from t; C1 42
The Oracle documentation contains a complete SQL reference.