zoukankan      html  css  js  c++  java
  • ORACLE基本用法及常用命令

    切换ORACLE用户 su - oracle
    ----------------------------
    重启数据库
    sqlplus sys / as sysdba
    shutdown immediate
    startup;
    ----------------------------
    导出单个表
    exp pls/yjt_pls2013@yjt file=/home/oracle/boz.dmp tables=EDU_VERSION_SET_AREA;
    导入单个表
    imp pls/yjt_pls2013@yjt file=RMS_RESOURCEBODY.dmp tables=EDU_VERSION_SET_AREA;
    exp tms/zzvcomTMS@youjt file=/home/oracle/boz.dmp tables=EDU_VERSION_SET_AREA;
     
     
    导出整个库
    su -oracle
    sqlplus / as sysdba
    create or replace directory DumpDir as '/home/oracle/pls';
    exit
     
    cd /home/oracle/pls
    expdp pls/yjt_pls DUMPFILE=zzpls2013.dmp DIRECTORY=DumpDir LOGFILE=zzpls2013.log SCHEMAS=pls
     
     
    导入整个库
    导入前先删除这个用户
    su - oracle
    sqlplus system/sys_98921
    drop user PLS cascade;
    commit;
    exit
    如果提示 无法删除当前连接的用户
    select username,sid,serial# from v$session where username like 'pls';
    alter system kill session 'sid,serial#';
     
    导入整个库
    cd /home/oracle/pls
    impdp system/sys_8968888 DUMPFILE=zzpls20130911.dmp DIRECTORY=DumpDir LOGFILE= zzpls20130911.log  SCHEMAS=pls
     
     
    约束表dba_constraints
    C (check constraint on a table) 
    P (primary key) 
    U (unique key) 
    R (referential integrity) 
    V (with check option, on a view) 
    O (with read only, on a view)
     
    oracle 查看某个表的约束
    select * from dba_constraints where owner='PLS' and table_name='SHARE_KNOWLEDG_STRUCTURE';
  • 相关阅读:
    fd_set 用法
    初步认识迭代服务器和并发服务器
    慢系统调用与信号中断
    nigix以及相关
    IO多路复用的几种实现机制的分析
    伪终端
    linux非阻塞的socket EAGAIN的错误处理
    从输入 URL 到页面加载完成的过程中都发生了什么事情?
    7.9 函数的定义
    7.8 文件操作
  • 原文地址:https://www.cnblogs.com/blueskycc/p/4347848.html
Copyright © 2011-2022 走看看