oracle建立表空間和匯入dmp檔案命令

2021-08-25 17:46:21 字數 983 閱讀 7640

// 1、建立表空間myspace

create tablespace mysapce

logging

datafile 'd:\programfiles\oracle\product\10.2.0\oradata\orcl\myfile.dbf'

size 100m

autoextend on

next 50m maxsize 8092m

extent management local;

// 2、建立使用者myuser並指定表空間myspace

create user myuser identified by mypass

default tablespace myspace

temporary tablespace temp;

// 3、為使用者myuser分配dba許可權

grant dba to myuser;

commit; // 提交

// 4、為使用者myuser匯入dmp檔案,注意匯出檔案的版本

imp myuser/mypass@orcl file=d:\download\dmpfile_20110224.dmp ignore=y full=y

//  匯出指定使用者hnsdtest的庫

exp hnsdtest/[email protected] file=e:\hnsd201106231450.dmp owner=(hnsdtest)

// 5、修改使用者myuser的預設表空間為myspace2

alter user myuser default tablespace myspace2 ;

// 6、刪除表空間hnsd

drop tablespace hnsd including contents and datafiles cascade constraints ;

// 7、刪除使用者hnsdtest

drop user hnsdtest cascade;

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

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

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

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

oracle建立表空間和表

oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使...