Oracle建立表空間,備份匯入資料庫

2021-08-08 15:07:29 字數 1008 閱讀 7184

一.建立本地資料庫表空間

由於oracle安裝的有些問題,我是用plsql來操作的,此處安利一下plsql,海量資料還是算優秀的.

1.登入本地系統oracle賬戶

.建表空間語句

create tablespacets_itda

//表空間的名稱

logging  

datafile 'e:\oracledata\ts_itda.dbf' //表空間的位置,最後的名稱要與表空間的名稱一致

size 500m

//初始大小500m

autoextend on   //設定增長

next 100m maxsizeunlimited            //每次增長100m,最大沒有限制

3.建立使用者指定表空間

create user itda identified by itda  default tablespacets_itda

4.賦予使用者許可權

grant connect,resource,dba

toitda

//其中dba是對備份,匯入資料庫的許可權,有些使用者可以不授予

二.備份,匯入資料庫

1.備份資料庫

exp itda/itda@

localhost

:1521/orcl file='f:\itda.dmp'

2.匯入資料庫

impitda/itda@

localhost

:1521/orcl file='f:\itda.dmp' full=y

這裡itda/itda,是你設定的使用者名稱密碼,localhost是你要備份或者匯入的資料庫的ip地     址,

f:\itda.dmp,備份資料庫時,這是你放備份的位址,itda是你自己命名的,dmp是資料庫的格式.

oracle建立表空間,建立使用者,匯入dmp資料

匯入oracle資料的時候,經常到用的時候忘記,特整理乙份,方便以後操作。需要注意的是 建立表空間和使用者是在sqlplus中執行,而匯入資料需要在cmd視窗執行。一 建立表空間 create tablespace 表空間名 datafile d dbf size m在建立的時候定義表空間名,表空間...

Oracle建立表空間 使用者 導入庫。

在做專案中,資料庫必不可少。該經驗用簡單的操作,實現在本機建立資料庫,以便專案使用 可以回家加班嘍!希望對大家有幫助。1.安裝完oracle database 10g,2個服務已經啟動 oracleoradb10g home1tnslistener oracleserviceorcl 我電腦配置較低...

Oracle建立表空間 建立使用者並授權 匯入匯出等

平時用到的比較多的語句,記錄下來 建立臨時表空間 create temporary tablespace plat temp tempfile d oracle oradata orcl plat temp.dbf size 2g autoextend on next 200m maxsize un...