<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MemoSoup &#187; export</title>
	<atom:link href="http://www.memosoup.com/tag/export/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memosoup.com</link>
	<description>Mix of the things I always forget</description>
	<lastBuildDate>Fri, 30 Jul 2010 15:59:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Oracle: export/import using compressed file</title>
		<link>http://www.memosoup.com/20090921/oracle-exportimport-using-compressed-file.html</link>
		<comments>http://www.memosoup.com/20090921/oracle-exportimport-using-compressed-file.html#comments</comments>
		<pubDate>Mon, 21 Sep 2009 12:06:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[compress]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[import]]></category>

		<guid isPermaLink="false">http://www.memosoup.com/?p=155</guid>
		<description><![CDATA[<p>Export to the compressed file</p>
/etc/mknod my_own_pipe p
gzip -c -9 &#60; my_own_pipe &#62; mydump.gz &#38;
exp username/password ...... file=my_own_pipe
rm -f my_own_pipe
<p>Import from the compressed file: </p>
/etc/mknod my_own_pipe p
gunzip -c mydump.gz &#62; my_own_pipe &#38;
imp username/password ....... file=my_own_pipe
rm [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Export to the compressed file</strong></p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:100%;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">mknod</span> my_own_pipe p<br />
<span style="color: #c20cb9; font-weight: bold;">gzip</span> <span style="color: #660033;">-c</span> <span style="color: #660033;">-9</span> <span style="color: #000000; font-weight: bold;">&lt;</span> my_own_pipe <span style="color: #000000; font-weight: bold;">&gt;</span> mydump.gz <span style="color: #000000; font-weight: bold;">&amp;</span><br />
exp username<span style="color: #000000; font-weight: bold;">/</span>password ...... <span style="color: #007800;">file</span>=my_own_pipe<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> my_own_pipe</div></div>
<p><strong>Import from the compressed file: </strong></p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:100%;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">mknod</span> my_own_pipe p<br />
<span style="color: #c20cb9; font-weight: bold;">gunzip</span> <span style="color: #660033;">-c</span> mydump.gz <span style="color: #000000; font-weight: bold;">&gt;</span> my_own_pipe <span style="color: #000000; font-weight: bold;">&amp;</span><br />
imp username<span style="color: #000000; font-weight: bold;">/</span>password ....... <span style="color: #007800;">file</span>=my_own_pipe<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> my_own_pipe</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.memosoup.com/20090921/oracle-exportimport-using-compressed-file.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle: export as sysdba</title>
		<link>http://www.memosoup.com/20090921/oracle-export-as-sysdba.html</link>
		<comments>http://www.memosoup.com/20090921/oracle-export-as-sysdba.html#comments</comments>
		<pubDate>Mon, 21 Sep 2009 12:03:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[dump]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[sysdba]]></category>

		<guid isPermaLink="false">http://www.memosoup.com/?p=153</guid>
		<description><![CDATA[<p>The following trick could be used, if You want to start Oracle export as sysdba: use double quotes around the single quotes.</p>
<p>Warning! Dump consistency could not be guaranteed, if the export is done under sys user!</p>
exp userid=&#34; '/ as sysdba' &#34; parfile=exp.par
<p>Possible [...]]]></description>
			<content:encoded><![CDATA[<p>The following trick could be used, if You want to start Oracle export as sysdba: <strong>use double quotes around the single quotes.</strong></p>
<p><strong>Warning!</strong> Dump consistency could not be guaranteed, if the export is done under sys user!</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:100%;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">exp userid=&quot; '/ as sysdba' &quot; parfile=exp.par</div></div>
<p>Possible parameter file:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:100%;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">file=mydump.dmp<br />
compress=n<br />
log=mydump.log<br />
direct=y<br />
full=n<br />
owner=SCOTT<br />
consistent=y<br />
feedback=10000</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.memosoup.com/20090921/oracle-export-as-sysdba.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
