Oracle建立使用者 表空間 匯入匯出 刪除命令

2021-08-30 09:41:35 字數 1363 閱讀 2237

建立臨時表空間

create temporary tablespace test_temp

tempfile 'f:\oracle\product\10.2.0\oradata\test\test_temp1.dbf'

size 10m

autoextend on

next 10m maxsize 2048g

extent management local;

建立資料表空間

create tablespace test_data

logging

datafile 'f:\oracle\product\10.2.0\oradata\test\test_data1.dbf'

size 10m

autoextend on

next 10m maxsize 2048m

extent management local;

建立使用者並指定表空間

create user test identified by test

default tablespace test_data

temporary tablespace test_temp;

給使用者授予許可權

grant connect,resource to test; (db2:指定所有許可權)

drop tablespace ... including contents and datafiles;刪除表空間

drop user user_name cascade;刪除使用者

匯入匯出命令:

下面介紹的是匯入匯出的例項。

資料匯出:

將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d:daochu.dmp中

exp system/manager@test file=d:daochu.dmp full=y

資料的匯入

將d:daochu.dmp 中的資料匯入 test資料庫中。

imp system/manager@test file=d:daochu.dmp

imp aichannel/aichannel@hust full=y file=d:datanewsmgnt.dmp ignore=y

上面可能有點問題,因為有的表已經存在,然後它就報錯,對該錶就不進行匯入。

在後面加上 ignore=y 就可以了。

修改使用者密碼和解鎖

alter user scott identified by tiger;

alter user scott account unlock;對scott解鎖

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...