程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> Oracle數據庫imp

Oracle數據庫imp

編輯:Oracle教程

創建表空間

create  tablespace ICITY  datafile 'D:\Oracle\oradata\orcl\ICITY.DBF' 
size 400M  autoextend on  next 10M maxsize unlimited extent management local;

創建臨時表空間

create temporary tablespace ICITY_TEMP  tempfile 'D:\Oracle\oradata\orcl\ICITY_TEMP.DBF' 
size 100M  autoextend on  next 10M maxsize unlimited extent management local;

創建用戶並指定用戶表空間

create user icity identified by "12345678" default tablespace ICITY_ICP temporary tablespace ICITY_ICP_TEMP;
分配用戶角色
grant dba to icity;
導入ICITY_ICP用戶數據
imp icity/12345678@orcl file='e:\icity_icp20140417.dmp' fromuser='icity' touser='icity';

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved