<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: oracle data export in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338194#M666129</link>
    <description>Hi there.&lt;BR /&gt;I think, you will have to do it by sqlplus.&lt;BR /&gt;select field1 || ';' || field2||';'||&lt;BR /&gt;&lt;BR /&gt;or by a script with dbms_output to limit your filesize.&lt;BR /&gt;&lt;BR /&gt;make your lines large enough ( set lines 5000 ) and your file without braks ( set pages 0).&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes&lt;BR /&gt;</description>
    <pubDate>Fri, 16 Jan 2009 11:11:54 GMT</pubDate>
    <dc:creator>Alexander M. Ermes</dc:creator>
    <dc:date>2009-01-16T11:11:54Z</dc:date>
    <item>
      <title>oracle data export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338193#M666128</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;i want to export data from oracle database to "|" separated csv files, and file size should not be exceeded then 1GB. I have a lot of data to export.&lt;BR /&gt;please suggest me how to do that...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jan 2009 09:37:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338193#M666128</guid>
      <dc:creator>raj111</dc:creator>
      <dc:date>2009-01-15T09:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: oracle data export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338194#M666129</link>
      <description>Hi there.&lt;BR /&gt;I think, you will have to do it by sqlplus.&lt;BR /&gt;select field1 || ';' || field2||';'||&lt;BR /&gt;&lt;BR /&gt;or by a script with dbms_output to limit your filesize.&lt;BR /&gt;&lt;BR /&gt;make your lines large enough ( set lines 5000 ) and your file without braks ( set pages 0).&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Jan 2009 11:11:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338194#M666129</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2009-01-16T11:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: oracle data export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338195#M666130</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;The toad oracle toolset also provides the ability to write sql statements and export them to a file with any delimiter you choose.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 16 Jan 2009 11:22:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338195#M666130</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-01-16T11:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: oracle data export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338196#M666131</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Yes, you can use SQL*Plus, here is what you need to do:&lt;BR /&gt;&lt;A href="http://oracle.ittoolbox.com/groups/technical-functional/oracle-sql-l/how-to-export-the-content-of-a-table-into-csv-and-then-xls-1663934" target="_blank"&gt;http://oracle.ittoolbox.com/groups/technical-functional/oracle-sql-l/how-to-export-the-content-of-a-table-into-csv-and-then-xls-1663934&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Donâ  t forget to enable SERVEROUTPUT parameter in SQL*Plus and set it to 1000000 (max value in bytes for Oracle 10gR1 and before)&lt;BR /&gt;&lt;BR /&gt;Bear in mind that PAGESIZE parameter has maximum value 50000. &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Vadim&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jan 2009 14:08:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338196#M666131</guid>
      <dc:creator>Vadim Loginov</dc:creator>
      <dc:date>2009-01-19T14:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: oracle data export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338197#M666132</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;Write the script that would run using sqlplus as follows:&lt;BR /&gt;&lt;BR /&gt;e.g. &lt;BR /&gt;spool file1.csv&lt;BR /&gt;set escape '\'&lt;BR /&gt;select field1||'\|'||field2||'\|'||field3&lt;BR /&gt;from tab1&lt;BR /&gt;where &lt;CRITERIA&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CRITERIA&gt; should be such that the size of file that would be generated does not exceed the 1GB specified. NB. You would have to do some tests first.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;/CRITERIA&gt;&lt;/CRITERIA&gt;</description>
      <pubDate>Tue, 20 Jan 2009 11:01:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-data-export/m-p/4338197#M666132</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2009-01-20T11:01:49Z</dc:date>
    </item>
  </channel>
</rss>

