Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With help of this command show databases; I can see databases in MySQL.

How to show the available databases in Oracle?

share|improve this question

2 Answers

up vote 12 down vote accepted

You can think of a mysql "database" as a schema/user in Oracle. If you have the privileges, you can query the DBA_USERS view to see the list of schemas.

share|improve this answer
6  
Some oracle databases have a lot of users without objects. For these, and alternative is SELECT DISTINCT OWNER FROM ALL_OBJECTS; – Gary Myers Jun 9 '10 at 23:26
1  
+1 nice alternative, just be aware that if you are not a privileged user and issue this query, you will see only those OWNER's where you have a privilege on at least one of their objects. – dpbradley Jun 10 '10 at 12:54
Query to DBA_USERS gives a "ORA-00942: table or view does not exist", maybe permission issue? The one in the comment "SELECT DISTINCT OWNER FROM ALL_OBJECTS;" is working with same access credentials. db 11g – a1an Jul 18 '12 at 9:31

Maybe you could use this view, but i'm not sure.

select * from v$database;

But I think It will only show you info about the current db.

Other option, if the db is running in linux... whould be something like this:

SQL>!grep SID $TNS_ADMIN/tnsnames.ora | grep -v PLSExtProc
share|improve this answer
First one not working in 11g: "ORA-00942: table or view does not exist" – a1an Jul 18 '12 at 9:27
1  
Hi @a1an. Without doubt, v$database exists in 11g. Check if you're executing the query with rights enought. Here you have the documentation about v$database for oracle 11g. docs.oracle.com/cd/B28359_01/server.111/b28320/… Algo, here you have a post with an example about the use of v%database in oracle 11g. neeraj-dba.blogspot.com.es/2011/10/… Good Luck! – Jonathan Jul 18 '12 at 10:35
1  
Probably jsut a permissions issue, executing it as sysdba works – a1an Jul 18 '12 at 15:23
Ok @a1an, just give permissions for select on that view. grant select on v_$database to youruser; PLEASE NOTE the underscore! v$database is a synonym and you can't grant proviledgest for synonyms (It can end in a ORA-02030 error). – Jonathan Jul 18 '12 at 19:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.