資料庫imp exp相關語句整理

2021-08-18 19:42:35 字數 748 閱讀 7071

如何把已有的資料庫匯入新的資料庫步驟

1、進入系統使用者(一般為system)建立表空間名為tsname ,存放位置為d:\oradata\tsname .ora 大小為2000m

create tablespace tsname (表空間名)  datafile 'd:\oradata\tsname  .ora' size 2000m;  

2、修改已存在表空間大小: 

alter database datafile 'd:\oradata\tsname .ora' autoextend on next 100m; 每次自增100m

3、建使用者

create user textname(使用者名稱) identified by textname(密碼) default tablespace tsname (預設表空間) temporary tablespace temp(臨時表空間); 

4、授權

grant dba to textname; 

5、使用者匯入

imp textname/textname@orcl file=f:\textweb.dmp fromuser=textname touser=textname compile=n ignore=y;

6、使用者匯出

exp textname/textname@orcl 

file=f:\textweb.dmp log=f:\textweb.log compress=n grants=n  compress=n grants=n;

資料庫相關整理語句

備份資料庫 backup database testdb to disk d data testdb20070906.bak 清空日誌 dump transaction testdb with no log 截斷事務日誌 backup log testdb with no log 收縮資料庫 dbc...

資料庫相關基礎語句

查詢儲存過程 exec sp helptext p business orderpool 查詢資料庫下所有下列內容 select name from sysobjects where xtype tr 所有觸發器 select name from sysobjects where xtype p 所...

MySql資料庫語句整理(一)

一 建立語句 建立資料庫 create database menagerie 選擇資料庫 use menagerie 建立表 create table pet name varchar 20 owner varchar 20 species varchar 20 char 1 birth date,...