Collections:
Perform a Full Database Export in Oracle
How To Do a Full Database Export in Oracle?
✍: FYIcenter.com
If you are ready to do a full database export, you can use the FULL=y parameter on the expdp command, as shown in the following tutorial exercise:
>expdp SYSTEM/fyicenter FULL=y ESTIMATE_ONLY=y Starting "SYSTEM"."SYS_EXPORT_FULL_01": SYSTEM/**** FULL=y Estimate in progress using BLOCKS method... Processing object DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA Total estimation using BLOCKS method: 169.8 MB Processing object type DATABASE_EXPORT/TABLESPACE Processing object type DATABASE_EXPORT/SYS_USER/USER Processing object type DATABASE_EXPORT/SCHEMA/USER ...... . . exported FLOWS_020100.WWV_FLOW_PAGE_PLUGS 32.51MB . . exported FLOWS_020100.WWV_FLOW_STEP_ITEMS 21.68MB . . exported FLOWS_020100.WWV_FLOW_STEP_PROCESSING 11.17MB ...... Master table "SYSTEM"."SYS_EXPORT_FULL_01" unloaded ********************************************************** Dump file set for SYSTEM.SYS_EXPORT_FULL_01 is: C:\ORACLEXE\APP\ORACLE\ADMIN\XE\DPDUMP\EXPDAT.DMP Job "SYSTEM"."SYS_EXPORT_FULL_01" successfully completed
⇒ Where Is the Export Dump File Located in Oracle
⇐ Disk Space Needed for an Export Job in Oracle
2016-10-15, 2751🔥, 0💬
Popular Posts:
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...