查看、修改Oracle数据库表空间大小以及导库

-- 查看所有表空间信息
select tablespace_name,file_id,bytes/1024/1024,file_name
from dba_data_files order by file_id;

-- 修改表空间大小
ALTER TABLESPACE WEBSITE ADD DATAFILE
'D:\SDE06.DBF' SIZE 20480M;  -- 此处文件路径可以由上面查到的路径而来

-- 在cmd上指令导库(导入)
> imp 用户名/密码@数据库地址url file=文件路径 full=y

例:
> imp website/[email protected]/orcl file=E:\website01.dmp full=y

-- 在cmd上指令导库(导出)
> exp 用户名/密码@数据库地址url file=文件路径

例:
> exp website/[email protected]/orcl file=E:\website01.dmp

-- 在cmd上指令导表(导入)
> imp 用户名/密码@数据库地址url file=文件路径 tables=(表1, 表2)

例:
> imp website/[email protected]/orcl file=E:\website01.dmp tables=(WORKING_TIME,SYS_CONFIG)

-- 在cmd上指令导表(导出)
> exp 用户名/密码@数据库地址url file=文件路径 tables=(表1, 表2)

例:
> exp website/[email protected]/orcl file=E:\website01.dmp tables=(WORKING_TIME,SYS_CONFIG)
或
> exp website/[email protected]/orcl file=E:\website01.dmp tables=WORKING_TIME

你可能感兴趣的:(#,Oracle学习笔记)