<?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: dboutput with 65 Million Rows in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199227#M187476</link>
    <description>&lt;P&gt;why can't you do at database end? Splunk is not as fast as the database.&lt;/P&gt;</description>
    <pubDate>Wed, 26 Mar 2014 05:20:55 GMT</pubDate>
    <dc:creator>linu1988</dc:creator>
    <dc:date>2014-03-26T05:20:55Z</dc:date>
    <item>
      <title>dboutput with 65 Million Rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199224#M187473</link>
      <description>&lt;P&gt;I need to output 65 Million rows to a database table, I see the default per transaction is 50K. Is there a good way to do this?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:40:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199224#M187473</guid>
      <dc:creator>ShaneNewman</dc:creator>
      <dc:date>2014-03-26T01:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: dboutput with 65 Million Rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199225#M187474</link>
      <description>&lt;P&gt;Just FYI, I tried streaming and it filled up all of the RAM on my server...&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2014 01:53:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199225#M187474</guid>
      <dc:creator>ShaneNewman</dc:creator>
      <dc:date>2014-03-26T01:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: dboutput with 65 Million Rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199226#M187475</link>
      <description>&lt;P&gt;Streaming has no limit, but if you're not in streaming mode you have a 50k row limit.&lt;/P&gt;

&lt;P&gt;How much memory? Please open a bug if it's at or over recommended minimum (12gb IIRC)&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2014 03:10:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199226#M187475</guid>
      <dc:creator>jcoates_splunk</dc:creator>
      <dc:date>2014-03-26T03:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: dboutput with 65 Million Rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199227#M187476</link>
      <description>&lt;P&gt;why can't you do at database end? Splunk is not as fast as the database.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2014 05:20:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199227#M187476</guid>
      <dc:creator>linu1988</dc:creator>
      <dc:date>2014-03-26T05:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: dboutput with 65 Million Rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199228#M187477</link>
      <description>&lt;P&gt;I have 24GB allocated to dbx, 48GB overall on the server.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2014 14:22:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199228#M187477</guid>
      <dc:creator>ShaneNewman</dc:creator>
      <dc:date>2014-03-26T14:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: dboutput with 65 Million Rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199229#M187478</link>
      <description>&lt;P&gt;The database does not have the data, I am trying to put it in the database.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2014 14:26:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199229#M187478</guid>
      <dc:creator>ShaneNewman</dc:creator>
      <dc:date>2014-03-26T14:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: dboutput with 65 Million Rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199230#M187479</link>
      <description>&lt;P&gt;Via splunk create the file into a csv file. (Could split up into 1 million records for better performance.)&lt;/P&gt;

&lt;P&gt;Then load using native DB commands?&lt;/P&gt;

&lt;P&gt;DB2 command something like: &lt;BR /&gt;
&lt;CODE&gt;db2 import from csvTypeFile of del "insert into table1 (c1, c2, c3,...)  "&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Oracle use SQL_Loader: &lt;CODE&gt;&lt;A href="http://www.orafaq.com/wiki/SQL*Loader_FAQ" target="_blank"&gt;http://www.orafaq.com/wiki/SQL*Loader_FAQ&lt;/A&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:14:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/dboutput-with-65-Million-Rows/m-p/199230#M187479</guid>
      <dc:creator>koshyk</dc:creator>
      <dc:date>2020-09-28T16:14:46Z</dc:date>
    </item>
  </channel>
</rss>

