How do I change the default schema in sql developer?

bernie2436 picture bernie2436 · Jul 1, 2013 · Viewed 145.3k times · Source

I don't see any tables in the tables section of a database that I've linked to w/ SQL developer. The DB admin says I need to change the default schema in SQL developer. How do I do that?

enter image description here

Answer

Ram picture Ram · Nov 1, 2013
alter session set current_schema = otheruser; 

should do the trick.