資料庫新建和倒資料

2021-08-29 06:10:57 字數 549 閱讀 8642

新建資料庫

1:新建兩個表空間,乙個用於資料庫使用(xiaolan_d,儲存空間200m),乙個為臨時表空間(xiaolan_t,儲存空間100m)

2:新建使用者xiaolan,並授予dba許可權,指定表空間xiaolan_d和臨時表空間xiaolan_d

匯出資料:

exp xiaolan/xiaolan@oracle_192.168.2.84 file=c:/tour.dmp log=c:/log.log owner=xiaolan

注釋:exp 使用者名稱/密碼@資料庫標識 file=匯出資料存放的地方 log=日誌存放的地方 owner=擁有者

其中owner可以指定匯入資料的時候也要乙個fromuser為剛才指定的使用者      

匯入資料:

imp xiaolan/xiaolan@oracle_192.168.2.136 file=c:/tour.dmp log=c:/log.log fromuser=xiaolan

注釋:imp  使用者名稱/密碼@資料庫標識 file=匯入資料存放的地方 log=日誌存放的地方 fromuser=擁有者

SQLlite新建資料庫

public class databasehelper extends sqliteopenhelper 帶兩個引數的建構函式,呼叫的其實是帶三個引數的建構函式 public databasehelper context context,string name 帶三個引數的建構函式,呼叫的是帶所有引...

新建oracle資料庫

2019年2月21日 蘇州 biip的資料庫名為 biiporcl 所用使用者預設的密碼為 root 初始化設定的 使用者為 biipuser 密碼為 root create user biipuser identified by root grant create functions to bii...

怎樣新建Oracle資料庫

新建oracle資料庫三種方法 1.通過執行oracle database configuration assistant 建立配置或刪除資料庫 也可在命令列下輸入dbca 2.用命令列的方式建立資料庫 3.通過執行自定義的批處理指令碼 或create oracle sid.bat create o...