Collections:
Export Your Own Schema in Oracle
How To Export Your Own Schema in Oracle?
✍: FYIcenter.com
If you have a non-system user account and you want to export all data objects in the schema associated with your account, you can use the "expdp" command with the SCHEMAS parameter. Running "expdp" command with a non-system user account requires a directory object granted to this user account. The following tutorial exercise shows you how to define a directory object and export a schema:
>mkdir \oraclexe\hr_dump >cd \oraclexe\app\oracle\product\10.2.0\server\BIN >sqlplus /nolog SQL> connect SYSTEM/fyicenter SQL> CREATE DIRECTORY hr_dump AS '\oraclexe\hr_dump'; Directory created. SQL> GRANT READ ON DIRECTORY hr_dump TO hr; Grant succeeded. SQL> GRANT WRITE ON DIRECTORY hr_dump TO hr; Grant succeeded. SQL> quit >expdp hr/fyicenter SCHEMAS=hr DIRECTORY=hr_dump DUMPFILE=schema.dmp LOGFILE=schema.log Starting "HR"."SYS_EXPORT_SCHEMA_01": hr/******** SCHEMAS=hr DIRECTORY=hr_dump DUMPFILE=schema.dmp LOGFILE=schema.log Estimate in progress using BLOCKS method... Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA Total estimation using BLOCKS method: 960 KB Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCH Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE Processing object type SCHEMA_EXPORT/TABLE/TABLE ...... . . exported "HR"."COUNTRIES" 6.085 KB 25 rows . . exported "HR"."DEPARTMENTS" 6.632 KB 27 rows . . exported "HR"."EMPLOYEES" 15.76 KB 107 rows . . exported "HR"."EMPLOYEES_TEMP" 15.86 KB 107 rows ...... Master table "HR"."SYS_EXPORT_SCHEMA_01" loaded/unloaded ********************************************************* Dump file set for HR.SYS_EXPORT_SCHEMA_01 is: C:\ORACLEXE\HR_DUMP\SCHEMA.DMP Job "HR"."SYS_EXPORT_SCHEMA_01" successfully completed
⇒ Export Several Tables Together in Oracle
⇐ Where Is the Export Dump File Located in Oracle
2016-10-15, 2062🔥, 0💬
Popular Posts:
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
Where to find SQL Server database server tutorials? Here is a collection of tutorials, tips and FAQs...