科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道ORACLE简单应用

ORACLE简单应用

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

  用户创建: create user identified by       default tablespace users       temporary tablespace temp;      新用户权限设定:grant connect,

作者:中国IT实验室 来源:中国IT实验室 2007年10月5日

关键字: 数据库 ORACLE

  • 评论
  • 分享微博
  • 分享邮件

  用户创建: create user <用户名> identified by <密码>
  
   default tablespace users
  
   temporary tablespace temp;
  
  新用户权限设定:grant connect,resource,unlimited tablespace to <用户名>;
  
  用户丢弃: drop user <用户名> cascade;
  
  
  取消权限: revoke <权限> from <用户名>;
  
  
  查询用户: select * from dba_users;
  
  
  查询已创建用户:select username from dba_users;
  
  
  查询空间: select * from dba_tablespaces;
  
  
  数据导入: imp <用户名>/<密码> file=文件名.dmp full=y
  
  
  数据导出: exp <用户名>/<密码> file=文件名.dmp full=y
  
  
  提交: commit;
  
  
  添加数据库文件:alter tablespace users add datafile '路径\users2.ora' size 500M;
  
   alter tablespace rbs add datafile '路径\rbs2.ora' size 200M;
  
   alter tablespace temp add datafile '路径\tmp2.ora' size 200M;
  
  
  开启表: alter rollback segment rb* online;
  
  
  关闭表: alter rollback segment rb* offline;
  
  
  添加回滚段: alter rollback segment rb* storage (next 2M optimal 10M);
  
  
  创建回滚段: create public rollback segment rb* storage (next 2M optimal 10M);
  
  
  注册表语言: ZHS16GBK 或者 ZHS16CGB231280
  
  
  启动LISTENER: lsnrctl status (看状态)
  
   lsnrctl start (启 动)
  

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章