How can I do Exp and Imp by using PL/SQL - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T03:42:29Zhttp://stackoverflow.com/feeds/question/365656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/365656/how-can-i-do-exp-and-imp-by-using-pl-sql1How can I do Exp and Imp by using PL/SQLMOHSEIN2008-12-13T20:14:12Z2009-07-06T15:17:23Z
<p>How can I do Exp and Imp by using PL/SQL?</p>
http://stackoverflow.com/questions/365656/how-can-i-do-exp-and-imp-by-using-pl-sql/397108#3971083Answer by Dwayne King for How can I do Exp and Imp by using PL/SQLDwayne King2008-12-29T03:59:56Z2008-12-29T03:59:56Z<p>This could be done in a few ways.</p>
<p>First, if you're using 10g or later, you can consider using data pump (expdp and impdp) as opposed to imp and exp. These are the newer and more capable versions of those tools.</p>
<p>As for how to call them from PL/SQL, you can do so by: </p>
<ul>
<li>You can make an external procedure call to a DLL (or shared library if you're on UNIX)</li>
<li>you could write a simple Java class (to run in the Oracle JVM) that would call out using Java</li>
<li>you could use Advanced Queues or DBMS_PIPE to communicate with external applications </li>
<li>You could use UTL_TCP to interact over the network (e.g. SOAP) </li>
<li>In 10g, you could use the DBMS_SCHEDULER package to call OS commands</li>
</ul>
<p>The first and last options should be well documented in the Oracle online docs - the other two options would require a little more coordination and coding.</p>
http://stackoverflow.com/questions/365656/how-can-i-do-exp-and-imp-by-using-pl-sql/471977#4719772Answer by Zuk for How can I do Exp and Imp by using PL/SQLZuk2009-01-23T05:22:03Z2009-01-23T05:22:03Z<p>If you are using impdp/expdp - Datapump (10g or later) - , you can simply use DBMS_DATAPUMP:</p>
<p><a href="http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_datpmp.htm" rel="nofollow">http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_datpmp.htm</a></p>
http://stackoverflow.com/questions/365656/how-can-i-do-exp-and-imp-by-using-pl-sql/1087566#10875660Answer by FerranB for How can I do Exp and Imp by using PL/SQLFerranB2009-07-06T15:17:23Z2009-07-06T15:17:23Z<p>You can see an example about exactly you are requesting in the <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14215/dp%5Fapi.htm#sthref460" rel="nofollow">Examples of Using the Data Pump API</a> inside the <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14215/toc.htm" rel="nofollow">Oracle Database Utilities</a> book.</p>