码迷,mamicode.com
首页 > 数据库 > 详细

oracle数据库基本操作

时间:2019-10-10 16:14:09      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:sysdba   dba   手动   方法   imp   sel   --   space   操作   

1.1. 恢复数据库

1.1.1. 功能介绍

导入新的dmp表数据

1.1.2. 方法

1、用工具(如:plsql)删除所有ndzlclear的会话   或者手动杀死session

 

1、用工具(如:plsql)删除所有porjectclear的会话
    plsql ---> zszlsit
    或者手动杀死session
2、cmd-------->sqlplus / as sysdba
3、SQL>  
    (1) drop user hqzl cascade;
    (2) create user hqhtxc default tablespace HQHT_JZ identified by hqhtxc;
    (3) grant all privileges, dba to hqhtxc;
4、SQL>quit
5、 imp hqhtxc/hqhtxc file=E:\hengqin\hqht20180411.dmp fromuser= hqhtxc touser= hqhtxc

 

1.2. 杀死进程

1.2.1. Kill session

select username,sid,serial# from v$session where username=‘PDU‘
 alter system kill session ‘9,1793‘
select ‘alter system kill session ‘‘‘||sid||‘,‘||serial#||‘‘‘;‘ from v$session;

1.3. 表空间

1.3.1. Oracle创建表空间,删除表空间

create tablespace hqht_jz
datafile ‘e:/tablespace/hqht_jz.dbf‘   
size 1024M   
autoextend on next 5M maxsize 3000M;  


删除表空间  
drop tablespace cebbank including contents and datafiles  



--导入导出命令     
ip导出方式: exp demo/demo@127.0.0.1:1521/orcl file=f:/f.dmp full=y  
exp demo/demo@orcl file=f:/f.dmp full=y  
imp demo/demo@orcl file=f:/f.dmp full=y ignore=y  

create user aaabank2 identified by 123456  default tablespace aaabank2; 

grant dba to aaabank2;

 

oracle数据库基本操作

标签:sysdba   dba   手动   方法   imp   sel   --   space   操作   

原文地址:https://www.cnblogs.com/Amanda-w/p/11648086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!