<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to export with data pump</title>
	<atom:link href="http://www.squaredba.com/how-to-export-with-data-pump-183.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.squaredba.com/how-to-export-with-data-pump-183.html</link>
	<description>Oracle DBA Forum, Articles, FAQs, Scripts, OCP Test Papers, Free Blog, DBA Training</description>
	<lastBuildDate>Thu, 03 Jun 2010 12:03:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Mark Daniel@Abs Training</title>
		<link>http://www.squaredba.com/how-to-export-with-data-pump-183.html/comment-page-1#comment-295</link>
		<dc:creator>Mark Daniel@Abs Training</dc:creator>
		<pubDate>Thu, 04 Feb 2010 06:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.squaredba.com/?p=183#comment-295</guid>
		<description>The OWNER parameter of exp has been replaced by the SCHEMAS  parameter which is used to specify the schemas to be exported. The following is an example of the schema export and import syntax.

    expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log

    impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log

For example output files see expdpSCOTT.log and impdpSCOTT.log.</description>
		<content:encoded><![CDATA[<p>The OWNER parameter of exp has been replaced by the SCHEMAS  parameter which is used to specify the schemas to be exported. The following is an example of the schema export and import syntax.</p>
<p>    expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log</p>
<p>    impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log</p>
<p>For example output files see expdpSCOTT.log and impdpSCOTT.log.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Jeracevich</title>
		<link>http://www.squaredba.com/how-to-export-with-data-pump-183.html/comment-page-1#comment-294</link>
		<dc:creator>John Jeracevich</dc:creator>
		<pubDate>Thu, 04 Feb 2010 06:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.squaredba.com/?p=183#comment-294</guid>
		<description>create the physical directory on the file system.

    CONN sys/password@db10g AS SYSDBA
    ALTER USER scott IDENTIFIED BY tiger ACCOUNT UNLOCK;
    GRANT CREATE ANY DIRECTORY TO scott;

    CREATE OR REPLACE DIRECTORY test_dir AS &#039;/u01/app/oracle/oradata/&#039;;
    GRANT READ, WRITE ON DIRECTORY test_dir TO scott;</description>
		<content:encoded><![CDATA[<p>create the physical directory on the file system.</p>
<p>    CONN sys/password@db10g AS SYSDBA<br />
    ALTER USER scott IDENTIFIED BY tiger ACCOUNT UNLOCK;<br />
    GRANT CREATE ANY DIRECTORY TO scott;</p>
<p>    CREATE OR REPLACE DIRECTORY test_dir AS &#8216;/u01/app/oracle/oradata/&#8217;;<br />
    GRANT READ, WRITE ON DIRECTORY test_dir TO scott;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
