1. 程式人生 > >oracle資料庫單張表的匯出及備份

oracle資料庫單張表的匯出及備份

開發十年,就只剩下這套架構體系了! >>>   

 

備份sql:

create table table_name_bak as select * from table_name;

 

匯出sql:

exp userid=scott/oracle@orcl tables=(emp) file=d:\emp.dmp --匯出單個表

 

參考連結:

http://blog.itpub.net/8052765/viewspace-1115474/

https://my.oschina.net/op