資料幫浦操作總結

2021-06-29 00:28:18 字數 2548 閱讀 3551

--oracle管理員登入

sqlplus sys/sys as sysdba

--為表空間增加檔案(oracle11g在win7 64位下乙個.dbf檔案最大32個g)

alter tablespace tablespace_name add datafile 'dirctory\directory....file_name.dbf' size 20000m;

--檢視當前所有表空間

select

tablespace_name,file_id,file_name,

round

(bytes / (

1024

*1024),0

) total_space

from

dba_data_files

order

bytablespace_name; 

--檢視當前連線例項

select

saddr,

sid,serial#,paddr,username,status

from

v$session

where

username

isnot

null

andusername

like

'lvyuanda'

;--殺死連線例項(sid和serial#)

alter

system

kill

session

'201,6398'

; --刪除使用者

drop

user

beiyelpgasmm

cascade

;--刪除表空間

drop

tablespace

table_space_name

including

contents

anddatafiles

;

--建立臨時表空間

create

temporary

tablespace

beiyelpgasmm_temp

tempfile

'f:\beiyelpgasmm\oradata\orcl\beiyelpgasmm_sys_temp.dbf'

size

800m

autoextend

onnext

200m

extent

management

local

; --建立資料表空間

create

tablespace

beiyelpgasmm

logging

datafile

'f:\beiyelpgasmm\oradata\orcl\beiyelpgasmm_sys.dbf'

size

800m

autoextend

onnext

200m 

--maxsize 20480m

extent

management

local

; --3建立使用者

create

user

beiyelpgasmm

identified

bybeiyelpgasmm

default

tablespace

beiyelpgasmm

temporary

tablespace

beiyelpgasmm_temp;

--給使用者授權

grant

connect

,resource

, dba

tobeiyelpgasmm;

--匯入資料庫

impdp beiyelpgasmm/beiyelpgasmm dumpfile=

expdp20150128

.dmp(資料庫檔案) remap_schema=beiyelpgasm(原來的模式名):beiyelpgasmm remap_tablespace=beiyelpgasm(原來的表空間):beiyelpgasmm

another:

imp

beiyelpgasmm/beiyelpgasmm@orcl fromuser=

beiyelpgasmm touser=

beiyelpgasmm  file=d:

beiyelpgasmm_2015-02-11.dmp  log=d:

beiyelpgasmm_2015-03-12.log

another:

impdp jingzhougas/jingzhougas  directory=dumpdir dumpfile=jingzhougas20150611.dmp  logfile=jingzhougas20150611.log remap_schema=jingzhougas:jingzhougas remap_tablespace=jingzhougas:jingzhougas table_exists_action=replace  version=10.2.0.1.0 

Oracle 資料幫浦匯入匯出總結

oracle資料幫浦匯入匯出是日常工作中常用的基本技術之一,它相對傳統的邏輯匯入匯出要高效,這種特性更適合資料庫物件數量巨大的情形,因為我日常運維的資料庫物件少則幾千,多則幾萬甚至幾十萬,所以傳統exp imp就會非常耗時,而資料幫浦方式就因此脫引而出,下面就詳細總結一下資料幫浦的使用方法,希望能給...

oracle 資料幫浦匯入與資料幫浦匯出

資料幫浦匯入 指令 impdp 一 資料庫所有物件的匯入 impdp system tiger dumpfile pump dir mydatabase dat filesize 100m nologfile y job name zhang full y estimate only 二 使用者資料...

oracle 資料幫浦 如何提公升資料幫浦匯出效率?

expdp資料幫浦匯出方式,是orace dba日常運維工作中最常用的一種資料遷移工具。它適用於部分物件,單使用者,多使用者等匯出場景。我們可以通過一定的優化方法,讓expdp跑得更快,從而提高運維效率。本文將介紹筆者最常用的乙個引數。對乙個有1g資料量的使用者,在虛擬機器環境,進行匯出測試 常規最...