系統:win10需要用sql語句求出匯出dmp檔案的大小資料庫:oracle 11.2.0.4
客戶端:plsql 13.0.2.1898
首先我們用exp命令匯出乙份dmp檔案,用來和等會求出的值比對
exp username/password file
=20201104.dmp indexes=n statistics
=none
select
sum(bytes/
1024
/1024
/1024
)"檔案大小(gb)"
from user_segments
where segment_name in
(select table_name from user_tables)
將查詢出來的值和檔案大小進行對比,可以發現大小基本一致 Oracle匯出 DMP 方法
方法一 利用pl sql developer工具匯出 選單欄 tools 1 g oracle product 10.1.0 client 1 network admin目錄下有個tnsname.ora檔案,內容如下 cmstar description address list address p...
oracle的dmp的匯入匯出
dmp檔案的匯出 exp xue 123456 localhost 1521 orcl file g oracle backups 20180718.dmp owner xue dmp檔案的匯入 imp xue 123456 localhost 1521 orcl file g oracle bac...
Oracle匯出表dmp檔案
經常我們在匯出資料庫進行備份的時候,會發現有些空表沒有匯出,如何匯出包含空表的完整資料庫呢?那麼請按照下面的方法進行即可。1.使用plsql工具,連線oracle資料庫 2.開啟乙個sql視窗,用以下這句查詢空表並生成執行命令 select alter table table name alloca...