ORACLE - Switch User
How to switch user in ORACLE Database?
In order to switch to Another Schema you need to have ALTER SESSION privilege. In real production system is this privilege granted exclusively to DBA.
- run: sqlplus
- connect / as sysdba
- ALTER SESSION SET CURRENT_SCHEMA={Another Schema}
- done!

