開啟sqlplus工具:
sqlplus /nolog
連線資料庫:
conn /
assysdba
建立表空間:
create
tablespace camds datafile
'd:\oracle\product\10.2.0\oradata\camds\camds.dbf'
size
200m autoextend
onnext
10m maxsize unlimited;
執行「p/l sql developer」工具,以dba(使用者名稱:system)的身份登入:
輸入新使用者的「使用者名稱/口令」:
新使用者「testcamds」成功登陸:
先執行cmd命令,進入命令列模式,轉到下面的目錄:d:\oracle\product\10.2.0\db_1\bin【該目錄下有exp.exe檔案】
命令語法:
imp userid/pwd@sid file=path/file fromuser=testcamds touser=userid
命令例項:
imp testcamds/123@camds file=c:\testcamds fromuser=testcamds touser=testcamds
匯入結果:
命令語法:
exp userid/pwd@sid file=path/file owner=userid
命令例項:
exp testcamds/123@camdsora file=c:\testcamds owner=testcamds
匯入結果:
mysql 匯入匯出表 mysql 匯出,匯入資料
windows下匯出mysql資料庫中的資料 1.mysql桌面管理工具,使用 select into outfile 語句匯出資料 1.1 進入管理工具後,選中要匯出的資料庫,右擊,選擇命令列頁面進入 1.2 輸入select from 表名into outfile 檔名 select from ...
linux 匯入匯出postgresql資料庫
匯出資料庫 1 定位到postgresql的安裝目錄bin下 我的目錄是 cd opt postgresql 9.2 bin 2 執行匯出命令 pg dump u username databasename root 111.sql 輸入資料庫密碼 這樣就把資料庫匯出到root下的111.sql檔案...
mysql匯出的資料 mysql匯出匯入資料
使用sql語句匯出資料 匯出時如果不寫絕對路徑,會提示the mysql server is running with the secure file priv option so it cannot execute this statement。使用 show variables like sec...