NO, NOT TABLESPACE.TABLE.BUT SHCEMA.TABLE

解决方案 »

  1.   

    select * from user_tables;
    all_tables;
    dba_tables
      

  2.   

    orale和sql server不同。后者是一个个的库,系统自带就好几个,而oracle通常只有一个数据库,而有多个实例(就是一系列相关的进程),当然就没有
    use database之类的语句了。
      

  3.   

    同意jiezhi(相逢何必曾相识) 说法
      

  4.   

    用这个语句:
    (1)、desc user_tables
    (2)、select * from user_tables where tablename='aa';
    或者
    select * from cat;
    或者
    select * from tab;
    等等。
      

  5.   

    不需要有,只要
    SELECT  XX,YY,ZZ FROM 用户名.表名
    就可以了。
      

  6.   

    select * from tabname;
    select * from user_tables;
      

  7.   

    难道sqlplus里就只能每次select都用 用户名.表名吗?
      

  8.   

    select colname1,colname2 from schemaname.tabname;