1、匯出庫:exp 資料庫使用者名稱/密碼@資料庫名 file=匯出檔案路徑
例如:exp dev/dev@egovsid file = e:\dbback\dev20120828.dmp
2、使用system登入資料庫
3、刪除以前使用者,若使用者在使用,在tools——>sessions裡kill掉程序
4、--刪除使用者
drop user test cascade;
5、--建立使用者
create user "test" profile "default"
identified by "test" default tablespace "epf_transaction"
account unlock;
grant unlimited tablespace to "test" with admin option;
grant "connect" to "test" with admin option;
grant "dba" to "test" with admin option;
6、導入庫:imp 資料庫使用者名稱/密碼@資料庫名 fromuser=使用者名稱 touser=使用者名稱 file=匯入檔案路徑
例如:imp test/test@egovsid fromuser=dev touer=test file = e:\dbback\dev20120828.dmp ignore=y
7、使用已建立的使用者test登陸資料庫
8、刪除資料庫表資料
delete from trans_a ;
delete from trans_b;
myql導資料庫
如mysql 安裝在c 盤,mysql資料庫的使用者名稱是root,密碼是123456,資料庫名是database name,在d 盤根目錄下面存放備份資料庫,備份資料庫名字為backup20070713.sql。備份資料庫 mysqldump uroot p123456 database name...
Solr4 6從資料庫導資料的步驟
solr4.6有從資料庫導資料的功能。匯入步驟如下 1.將 下來的solr4.6的dist資料夾下的solr dataimporthandler 4.6.0.jar和solr dataimporthandler extras 4.6.0.jar放入tomcat該路徑下 f solr tomcat7....
excle匯入資料導資料庫
自己寫的乙個匯入excel檔案導資料庫,為了方便以後寫 需要用到時,好找一點,匯入資料庫為mongodb restcontroller import public class importcontroller else if name.endswith xlsx 得到乙個工作表 sheet shee...