oracle和sqlerver的概念不一样。
不是象sqlserver那样一个个的库的。
看表可以:
select * from tab/user_objects/cat

解决方案 »

  1.   

    the 'database' concept is different from SQL server .Once your connection is created . Only one database you are connecting .
    select * from user_tables 
    will tell you how many tables under your schema .
      

  2.   

    在 dba stadio 里比较清楚
      

  3.   

    how many DBs?please see 控制面板|服务|oracleservice*
      

  4.   

    多少数据库?ORACLE里没有这个概念;要看库内的数据表,可以使用SQL:SELECT * FROM DBA_OBJECTS WHERE TYPE = 'TABLE';
      

  5.   

    agree  black_snail(●龙飞虎○)
      

  6.   

    用dba stadio
    或是 PLSQL Developer
    select * from user_tables
      

  7.   

    to shuipipi(水皮皮):ORACLE里有这个概念,如果你愿意,你完全可以建立两个以上的数据库了。
    to jackyyefei () :斑竹说的很对,一旦一个连接建立,你就只能连接到一个数据库,所以,你想通过向sql server那样看到多个库是不可能的;你想要查询数据的表,你可以用dba stadio和sqlplus两种方式下查看,楼上的兄弟们讲的很多了,你照搬就可以了