在做專案中,資料庫必不可少。該經驗用簡單的操作,實現在本機建立資料庫,以便專案使用(可以回家加班嘍!)。希望對大家有幫助。
1.安裝完oracle database 10g,2個服務已經啟動(oracleoradb10g_home1tnslistener、oracleserviceorcl)。我電腦配置較低,設定為手動啟動。
2.開啟dos命令視窗(快捷鍵win+r)。輸入cmd。回車。
3.輸入:sqlplus /@orcl as sysdba 實現了:進入sql命令列。
4.輸入:create tablespace aiscommon datafile 'd:\oracle\aiscommon.dbf' size 200m autoextend on next 100m maxsize unlimited;
實現了:建立表空間。(該錶空間,名字:aiscommon;位置:d:\oracle\)
5.輸入:create user zhongtie identified by zhongtie default tablespace aiscommon;
實現了:建立使用者。(該使用者,名字:zhongtie;密碼:zhongtie)
6.輸入:grant dba to zhongtie;
實現了:授權。(給zhongtie授權)
7.關閉dos命令視窗。再開啟乙個dos視窗。
實現了:退出sql命令。為導庫做準備。
8.輸入:imp zhongtie/zhongtie@orcl full=y file=d:\soft\資料庫\aisv6zhengshi.dmp d:\tables.log ignore=y;
實現了:導入庫。(匯入aisv6zhengshi.dmp,生成日誌:d:\tables.log)
9.匯入完成。
10.用pl/sql測試連線,成功。
檢查測試語句,呵呵,成功了。
(以後就可以使用自己本機的資料庫了,有些任務就可以回家做了。)
oracle建立表空間,建立使用者,匯入dmp資料
匯入oracle資料的時候,經常到用的時候忘記,特整理乙份,方便以後操作。需要注意的是 建立表空間和使用者是在sqlplus中執行,而匯入資料需要在cmd視窗執行。一 建立表空間 create tablespace 表空間名 datafile d dbf size m在建立的時候定義表空間名,表空間...
Oracle建立表空間 建立使用者並授權 匯入匯出等
平時用到的比較多的語句,記錄下來 建立臨時表空間 create temporary tablespace plat temp tempfile d oracle oradata orcl plat temp.dbf size 2g autoextend on next 200m maxsize un...
Oracle建立使用者 表空間 匯入匯出 命令
檢視表空間 select d.bytes 1024 1024,d.from dba data files d 建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserv...