博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle常用命令
阅读量:5973 次
发布时间:2019-06-19

本文共 1207 字,大约阅读时间需要 4 分钟。

select instance_name from v$instance;

create tablespace POSPDATA datafile '/u01/oradata/POSP/posp1.dbf' size 3G autoextend on online

alter tablespace POSPDATA add datafile '/u01/oradata/POSP/posp5.dbf' size 1G autoextend on; online

create user posp identified by posp default tablespace posp;

create directory expdp AS '/dmp';

impdp system/oracle dumpfile=posp_expdp_20170718.dmp exclude=STATISTICS ignore=y logfile=exp.log schemas=POSP parallel=4 JOB_NAME=full_job

alter tablespace posp rename to POSPDATA

---查看数据库字符集

select userenv('language') from dual;

drop user posp cascade;

create user posp identified by posp default tablespace POSPDATA;

grant dba to posp;
alter user posp unlock;
grant connect to posp;
--查看dump文件字符集
cat posp_expdp_20170718.dmp|od -x|head -1|awk '{print $2 $3}'|cut -c 3-6
0154
select nls_charset_name(to_number('0154','xxxx')) from dual;

select 'drop table ' || owner_name ||'.'||job_name||'.' from dba_datapump_jobs where state='NOT RUNNING'

select t.tablespace_name,round(sum(bytes/(1024*1024))) t_size

from dba_tables t,dba_data_files d
where t.tablespace_name=d.tablespace_name
group by t.tablespace_name;

select

from
where

 

转载于:https://www.cnblogs.com/karmapeng/p/7490618.html

你可能感兴趣的文章
Java5的 线程并发库
查看>>
HDOJ 1036 输入输出 水
查看>>
Java 安装后的检测是否安装成功
查看>>
设备及分辨率
查看>>
mybatis拦截器
查看>>
App重新启动
查看>>
矩阵乘法
查看>>
得到目标元素距离视口的距离以及元素自身的宽度与高度(用于浮层位置的动态改变)...
查看>>
安装和配置Tomcat
查看>>
实验三
查看>>
第一次实验总结
查看>>
openssh for windows
查看>>
PostgreSQL cheatSheet
查看>>
vue ...mapMutations 的第一个参数默认为 数据对象state
查看>>
其他排序
查看>>
Android Studio_更新Gradle
查看>>
leetcode 258. Add Digits——我擦,这种要你O(1)时间搞定的必然是观察规律,总结一个公式哇...
查看>>
[100]tar命令打包(排除目录或文件)
查看>>
查询应用服务器的会话数
查看>>
netty 源码分析
查看>>