自带的是Sql Plus, 命令行工具;

我们可以自己下载一个界面管理工具:PLSQL Developer V8+ (v9 下载地址: http://www.pc6.com/softview/SoftView_66665.html)

PLSQL Developer 9.0注册码

                         Product Code:46jw8l8ymfmp2twwbuur8j9gv978m2q2du
                         serial Number:307254
                         password:xs374ca

PLsql developer v9 不能连接上Oracle 10 g 64 bit,

用 Plsql v8 能连上

或 Toad for oracle v10

 或 iSQL PLUS (web界面管理工具)


1,用sql plus 查询

    进入sql plus的方法:用户名为 system, 口令 为安装 oracle时设置的口令,Host String 可暂时不填。

  

2,一般查询用到的sql语句

       查询前10条记录

      select * from dictionary where rownum<=10;  

      查oracle版本信息

      select banner from sys.v_$version;

      查看当前用户的缺省表空间

      select username,default_tablespace from user_users;

     查看当前用户的角色
     select * from user_role_privs;

    查看当前用户的系统权限和表级权限
      select * from user_sys_privs;
       select * from user_tab_privs;

       查看用户下的2个表
        select * from user_tables where rownum<=2;

      查看名称包含log字符的表
      select object_name,object_id from user_objects where instr(object_name,'LOG')>0;


      查看某表的创建时间
      select object_name,created from user_objects where
object_name=upper('&table_name');


      查看某表的大小
      select sum(bytes)/(1024*1024) as "size(M)" from
user_segments where segment_name=upper('&table_name');




Oracle的SQL-PLUS登陆

​ http://wenku.baidu.com/view/d32be72f647d27284b7351a2.html ​