<?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>Question Re: Problems loading data into IQ in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824084#M3523652</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well this is curious... when I added the , at the end, it did load my data. And when I loaded 12 files concurrently, it loaded remarkably quickly - 2m30s for 1.4bn rows. Very nice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now with this new syntax, I don't see the 1200% on process iqsrv16 that I saw before (which is I'm guessing 12 concurrent load threads). Instead, I see one java process (for the loader?) with 14% CPU utilization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10 minutes later... nothing much has happened. Any ideas what I have done wrong?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Nov 2013 16:56:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-11-24T16:56:31Z</dc:date>
    <item>
      <title>Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaq-p/9824080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doing some testing with IQ and struggling to load some simple data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;CREATE TABLE "TRANSACTION" (&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "CUSTOMER_ID" INTEGER,&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "MERCHANT_ID" INTEGER,&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "TXTIMESTAMP" TIMESTAMP,&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "TXAMOUNT" DECIMAL(17,2),&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "TXCURR" CHAR(3));&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;LOAD TABLE transaction&lt;/P&gt;&lt;P class="p1"&gt;( customer_id, merchant_id, txtimestamp datetime('yyyy-mm-dd hh:nn:ss,'), txamount, txcurr)&lt;/P&gt;&lt;P class="p1"&gt;FROM '/iq/demo/1.csv'&lt;/P&gt;&lt;P class="p1"&gt;ESCAPES OFF&lt;/P&gt;&lt;P class="p1"&gt;DELIMITED BY ','&lt;/P&gt;&lt;P class="p1"&gt;ROW DELIMITED BY '\n'&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;host:/iq/demo # &lt;/STRONG&gt;&lt;SPAN class="s1"&gt;cat 1.csv&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;1945178,2058615,2001-01-08 16:52:53, 8.75,GBP&lt;/P&gt;&lt;P class="p2"&gt;1180243,3118407,2001-01-02 01:25:25,14.22,GBP&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Now I read you have to have a row delimiter to enable load parallelism which is why I included it. But, it returns an error.&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;host:/iq/iq/IQ-16_0/demo # &lt;/STRONG&gt;&lt;/SPAN&gt;dbisql -c "uid=DBA;pwd=sql" load3.sql&lt;/P&gt;&lt;P class="p1"&gt;Could not execute statement.&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; Missing row delimiter detected during a row delimited insert. &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;I found that if I changed the format to this (note the trailing commas):&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;host:/iq/demo # &lt;/STRONG&gt;&lt;SPAN class="s1"&gt;cat 1.csv&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;1945178,2058615,2001-01-08 16:52:53, 8.75,GBP,&lt;/P&gt;&lt;P class="p2"&gt;1180243,3118407,2001-01-02 01:25:25,14.22,GBP,&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;And then I run a simpler load statement:&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;LOAD TABLE transaction&lt;/P&gt;&lt;P class="p1"&gt;( customer_id, merchant_id, txtimestamp datetime('yyyy-mm-dd hh:nn:ss,'), txamount, txcurr)&lt;/P&gt;&lt;P class="p1"&gt;FROM '/iq/demo/1.csv'&lt;/P&gt;&lt;P class="p1"&gt;ESCAPES OFF;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Then it works just fine. Not sure why though...&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Ideas much appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 22:08:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaq-p/9824080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-22T22:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824081#M3523649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Likely your issue is because you don't have FORMAT BCP specified.&amp;nbsp; Your file does not appear to have a delimiter after the last column.&amp;nbsp; When you use DELIMITED BY and ROW DELIMITED BY the default is to expect a column delimiter after every column, even the last.&amp;nbsp; This is known as FORMAT ASCII (the default).&amp;nbsp; Changing to FORMAT BCP then tells IQ that the column delimiter will exist on all columns EXCEPT the last one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep in mind, too, that using the DATETIME() feature means that that column must ALWAYS be that wide.&amp;nbsp; You cannot have an empty string that represents a NULL.&amp;nbsp; In reality, though, you don't need to specify the DATETIME() function as your format is one of the default formats for IQ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set temporary option escape_character='on';&lt;/P&gt;&lt;P&gt;set temporary option quoted_identifier='on';&lt;/P&gt;&lt;P&gt;set temporary option date_format='ymd'; -- forces the date order to be YMD for loading&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;LOAD TABLE transaction&lt;/P&gt;&lt;P class="p1"&gt;( customer_id, merchant_id, txtimestamp, txamount, txcurr)&lt;/P&gt;&lt;P class="p1"&gt;FROM '/iq/demo/1.csv'&lt;/P&gt;&lt;P class="p1"&gt;FORMAT BCP&lt;/P&gt;&lt;P class="p1"&gt;ESCAPES OFF&lt;/P&gt;&lt;P class="p1"&gt;DELIMITED BY ','&lt;/P&gt;&lt;P class="p1"&gt;ROW DELIMITED BY '\n'&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN style="font-size: 10pt;"&gt;I ran this on my Linux machine and loaded the data without issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Mark&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 22:38:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824081#M3523649</guid>
      <dc:creator>markmumy</dc:creator>
      <dc:date>2013-11-22T22:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824082#M3523650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I did see the BCP format in the LOAD documentation but I couldn't figure out what it means. This explains it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However what I run the code that you give, I get the following error instead. I guessed that it's a delimiter problem... I checked in a hex editor and I see:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delimiter is 0x2c which is what's in the file (comma)&lt;/P&gt;&lt;P&gt;Row Delimiter is 0x0d 0x0a which is CRLF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So... I changed the delimiter and it worked. Yay!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a side-note I've used these same files to load into 10 different databases and only IQ was this hard - normally I'm up and running within 5-10 minutes. Think it's a combination of weird terminology, weird syntax and lack of action on forums with people discussing this stuff. It's a shame because IQ seems like a pretty interesting database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;set temporary option escape_character='on';&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;set temporary option quoted_identifier='on';&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;set temporary option date_format='ymd'; -- forces the date order to be YMD for loading&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1" style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;LOAD TABLE transaction&lt;/P&gt;&lt;P class="p1" style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;( customer_id, merchant_id, txtimestamp, txamount, txcurr)&lt;/P&gt;&lt;P class="p1" style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;FROM '/iq/demo/1.csv'&lt;/P&gt;&lt;P class="p1" style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;FORMAT BCP&lt;/P&gt;&lt;P class="p1" style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;ESCAPES OFF&lt;/P&gt;&lt;P class="p1" style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;DELIMITED BY ','&lt;/P&gt;&lt;P class="p1" style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;ROW DELIMITED BY '\x0d\x0a'&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;server:/iq/iq/IQ-16_0/demo # &lt;/STRONG&gt;&lt;/SPAN&gt;dbisql -c "uid=DBA;pwd=sql" loadnew.sql&lt;/P&gt;&lt;P class="p1"&gt;Could not execute statement.&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; Right truncation of string data&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; SQLCODE=-638, ODBC 3 State="22001"&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File: "loadnew.sql" on line 1, column 1&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; LOAD TABLE transaction&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; ( customer_id, merchant_id, txtimestamp, txamount, txcurr)&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; FROM&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; '/iq/transaction_2001.csv',&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; '/iq/transaction_2002.csv',&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; ...&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; You can continue executing or stop.&lt;/P&gt;&lt;P class="p1"&gt;1. Stop&lt;/P&gt;&lt;P class="p1"&gt;2. Continue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 16:45:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824082#M3523650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T16:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824083#M3523651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The 'right truncation of string data' generally means that you are loading data into IQ that is wider than the column type (for any reason).&amp;nbsp; For instance, if you have a char(10) field and load 11 or more characters into it, you will see the error.&amp;nbsp; In previous versions we silently truncated the data.&amp;nbsp; There is an option called String_Rtruncation that can be set from the default of ON (throw an error) to OFF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Personally, I prefer to use the hex values for carriage return and line feed just as you have.&amp;nbsp; You could also drop in \r\n if needed.&amp;nbsp; But like I said, the hex values leave no room for error as they are quite specific.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad you got it working!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 16:50:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824083#M3523651</guid>
      <dc:creator>markmumy</dc:creator>
      <dc:date>2013-11-24T16:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824084#M3523652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well this is curious... when I added the , at the end, it did load my data. And when I loaded 12 files concurrently, it loaded remarkably quickly - 2m30s for 1.4bn rows. Very nice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now with this new syntax, I don't see the 1200% on process iqsrv16 that I saw before (which is I'm guessing 12 concurrent load threads). Instead, I see one java process (for the loader?) with 14% CPU utilization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10 minutes later... nothing much has happened. Any ideas what I have done wrong?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 16:56:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824084#M3523652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T16:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824085#M3523653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send the exact load table?&amp;nbsp; And the size of the file to be loaded?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the previous load with a trailing comma you mentioned 12 files.&amp;nbsp; IQ 16 will load each file in the FROM clause in separate threads.&amp;nbsp; If this is just a single file, then the CPU drop makes sense.&amp;nbsp; However, a properly formatted load table should run fully parallel with just 1 file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Likely, the cause is that you don't have QUOTES OFF specified.&amp;nbsp; The default is ON, kinda backwards in my opinion.&amp;nbsp; Anyway, QUOTES ON means that we cannot load fully parallel as we have to scan each column single threaded looking for the beginning quote and end quote.&amp;nbsp; This is time consuming and is not currently parallel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before sending anything, try dropping in QUOTES OFF near the ESCAPES OFF line and see if that works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 17:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824085#M3523653</guid>
      <dc:creator>markmumy</dc:creator>
      <dc:date>2013-11-24T17:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824086#M3523654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="p1"&gt;Thanks one again! Looks like this was unrelated - the IQ process had hung and no SQL was being executed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;I tried to stop the I server, and got the following. So I had to kill the process in the end to get it to stop. After that, I was able to restart IQ and restart the load process.&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;One thing that I find odd though is that it's no faster - 2m30s and I only see 1200% CPU when I have 40 cores and 80 threads available.&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Feels like I've done something that has dropped the IQ Bulk Loader out of parallel mode.&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;John&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;server:/iq/iq/IQ-16_0/demo # &lt;/STRONG&gt;more loadnew.sql&lt;/P&gt;&lt;P class="p1"&gt;set temporary option escape_character='on';&lt;/P&gt;&lt;P class="p1"&gt;set temporary option quoted_identifier='on';&lt;/P&gt;&lt;P class="p1"&gt;set temporary option date_format='ymd'; &lt;/P&gt;&lt;P class="p1"&gt;DROP TABLE transaction;&lt;/P&gt;&lt;P class="p1"&gt;CREATE TABLE "TRANSACTION" (&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; "CUSTOMER_ID" INTEGER,&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; "MERCHANT_ID" INTEGER,&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; "TXTIMESTAMP" TIMESTAMP,&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; "TXAMOUNT" DECIMAL(17,2),&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; "TXCURR" CHAR(3));&lt;/P&gt;&lt;P class="p1"&gt;LOAD TABLE transaction&lt;/P&gt;&lt;P class="p1"&gt;( customer_id, merchant_id, txtimestamp, txamount, txcurr)&lt;/P&gt;&lt;P class="p1"&gt;FROM&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2001.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2002.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2003.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2004.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2005.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2006.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2007.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2008.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2009.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2010.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2011.csv',&lt;/P&gt;&lt;P class="p1"&gt;'/iq/transaction_2012.csv'&lt;/P&gt;&lt;P class="p1"&gt;FORMAT BCP&lt;/P&gt;&lt;P class="p1"&gt;QUOTES OFF&lt;/P&gt;&lt;P class="p1"&gt;ESCAPES OFF&lt;/P&gt;&lt;P class="p1"&gt;DELIMITED BY ','&lt;/P&gt;&lt;P class="p1"&gt;ROW DELIMITED BY '\x0d\x0a'&lt;/P&gt;&lt;P class="p1"&gt;;&lt;/P&gt;&lt;P class="p1"&gt;commit work;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;server:/iq/iq/IQ-16_0/demo # &lt;/STRONG&gt;stop_iq&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Checking system ...&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;The following 1 server(s) are owned by 'root'&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;## Owner&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PID&amp;nbsp;&amp;nbsp; Started&amp;nbsp; CPU Time&amp;nbsp; Additional Information&lt;/P&gt;&lt;P class="p1"&gt;-- ---------&amp;nbsp; -------&amp;nbsp; --------&amp;nbsp; --------&amp;nbsp; ------------------------------------&lt;/P&gt;&lt;P class="p1"&gt;1: root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 73757&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Nov22&amp;nbsp; 00:51:15&amp;nbsp; SVR:server_iqdemo DB:iqdemo PORT:2638&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /iq/iq/IQ-16_0/bin64/iqsrv16 @iqdemo.cfg iqdemo.db -ti 4400 -gn 25 -o /iq/iq/IQ-16_0/logfiles/server_iqdemo.0001.srvlog -hn 5&lt;/P&gt;&lt;P class="p1"&gt;--&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; Please note that 'stop_iq' will shut down a server completely &lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; without regard for users, connections, or load process status. &lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; For more control, use the 'dbstop' utility, which has options &lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; that control stopping servers based on active connections.&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Do you want to stop the server displayed above &amp;lt;Y/N&amp;gt;? Y&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Shutting down server (73757) ...&lt;/P&gt;&lt;P class="p1"&gt;Checkpointing server (73757) .........................................................&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Notice:&amp;nbsp;&amp;nbsp;&amp;nbsp; Time alotted for server shutdown has expired. The server may&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; be waiting on a system or network lock or it may requires&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; more time depending on memory allocation. If server does&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; not respond further, a hard shutdown may be required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 17:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824086#M3523654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T17:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824087#M3523655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How large is each file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 17:25:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824087#M3523655</guid>
      <dc:creator>markmumy</dc:creator>
      <dc:date>2013-11-24T17:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824088#M3523656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;120m records, 5.2GB per file. There's a white paper here with some suggestions. I'd better check the number of CPUs I have allocated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sybase.com/files/White_Papers/IQ-15-Loading-WP.pdf" title="http://www.sybase.com/files/White_Papers/IQ-15-Loading-WP.pdf"&gt;http://www.sybase.com/files/White_Papers/IQ-15-Loading-WP.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 17:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824088#M3523656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T17:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824089#M3523657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;Looks like I have plenty of CPUs but I'm running out of buffer cache pages. I didn't tune any parameters yet so that makes sense. I'm loading 62GB of flat files, so 2GB of RAM is joing to hurt sooner or later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;Not sure if that's causing the lack of parallel processing and I don't get the message "portions of this load may be single threaded".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;I. 11/24 16:35:20. 0000000000 main Bufman: All buffer cache pages are in use, ask your DBA to increase the size of the buffer cache. slib/s_bufman.cxx:3861&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;John&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;=============================================================&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;IQ server starting with:&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10 connections&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -gm )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 170 cmd resources&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( -iqgovern )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp; 3989 threads&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -iqmt )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 512 Kb thread stack size&amp;nbsp;&amp;nbsp; (&amp;nbsp;&amp;nbsp; -iqtss&amp;nbsp; )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp; 2042368 Kb thread memory size ( -iqmt * -iqtss )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 80 IQ number of cpus&amp;nbsp; ( -iqnumbercpus )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 MB maximum size of IQMSG file ( -iqmsgsz )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 copies of IQMSG file archives ( -iqmsgnum )&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;=============================================================&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 17:44:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824089#M3523657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T17:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824090#M3523658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That paper is really for IQ 15.&amp;nbsp; Can you send your CFG file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system has 40 cores, but IQ sees 80.&amp;nbsp; That's because hyperthreading is turned on.&amp;nbsp; We recommend that HT be turned off or you add this option to your cfg file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -iqnumbercpus 40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where 40 is the number of physical cores without hyperthreading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seeing your CFG file will help with other options.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 17:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824090#M3523658</guid>
      <dc:creator>markmumy</dc:creator>
      <dc:date>2013-11-24T17:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824091#M3523659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the config file. I've clearly not correctly understood IQ's configuration... because now it doesn't load at all &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;Could not execute statement.&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp; main Bufman: All buffer cache pages are in use, ask your DBA to increase&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp; the size of the buffer cache. &lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-c&amp;nbsp; 96g&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gc 20&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gd all&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gl all&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gm 10&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gp 4096&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqmc 96g&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqtc 256g&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqnumbercpus 40&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 18:10:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824091#M3523659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T18:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824092#M3523660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a performance tuning guide here, that offers a bunch of suggestions. &lt;A href="http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc00169.1600/doc/pdf/iqperf.pdf" title="http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc00169.1600/doc/pdf/iqperf.pdf"&gt;http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc00169.1600/doc/pdf/iqperf.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on those I changed my config file to the following... and now I get a different error &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-c 48m&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gc 20&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gd all&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gl all&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gm 10&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gp 4096&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqlm 128g&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqmc 128g&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqtc 128g&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqnumbercpus 40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;Could not execute statement.&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp; Ran out of IQ large memory (-iqlm) . &lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp; -- (dflib/dfo_ColumnVector.cxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 18:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824092#M3523660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T18:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824093#M3523661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK... so IQ doesn't recognize the 128g for -iqlm, -iqmc and -iqtc, they have to be in MB. That's pretty stupid, it recognizes these for the -c option. Grr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following works and I see it is allocating 256GB RAM to IQ. Curiously, that wasn't improving performance, and I noticed the loader was I/O bound at 140 seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I moved the IQ files onto SSD. That made it slower, at 160 seconds. Now I'm really confused &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: I should point out at this stage that 140 seconds is much faster than any other database I've ever used - though that's not unexpected, IQ is incredibly fast for bulk loads, I think it was you that did the world record test, right? I just hate having an unexplained bottleneck!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-c 48m&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gc 20&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gd all&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gl all&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gm 10 &lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-gp 4096 &lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqlm 131072&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqmc 131072&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqtc 131072&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-iqnumbercpus 40&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 18:50:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824093#M3523661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-24T18:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824094#M3523662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So 140-160 seconds isn't too bad.&amp;nbsp; A bit below normal, but not bad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our rough calculation for IQ 16 is 10-20 MB per second per core.&amp;nbsp; A 40 core system should be able to process 400-800 MB per second in total.&amp;nbsp; 62gb would take roughly 155 seconds at 400 MB/sec (10MB/sec/core).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS - I've been trying to post for some hours and it keeps kicking out my tech response to one of the earlier posts.&amp;nbsp; GRRRRRRRR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 23:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824094#M3523662</guid>
      <dc:creator>markmumy</dc:creator>
      <dc:date>2013-11-24T23:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problems loading data into IQ</title>
      <link>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824095#M3523663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I forgot to post this before I left and have been having trouble trying to post it.&amp;nbsp; Looks like you already figured that piece out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since this is IQ 16, there are some new things to consider.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check out my new IQ hardware sizing guide: &lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-46166"&gt;http://scn.sap.com/docs/DOC-46166&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your -c is a tad too big at 96gb.&amp;nbsp; I would set it to 1g at most.&amp;nbsp; There are some systems were we do set it in the 4-8g range, but let's not go that high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 3 main parameters that you need to focus on are -iqtc, -iqmc, and -iqlm.&amp;nbsp; Take your total memory on the machine and take 90-95% of that number.&amp;nbsp; I see you have 256g for temp cache and 96g for main cache, plus 96g for catalog cache (-c).&amp;nbsp; I would assume (?) that you have 512gb of total RAM??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming 512g total ram, take 90-95% of that.&amp;nbsp; Let's say 460gb.&amp;nbsp; Divide that by 3 to get 154gb.&amp;nbsp; Use that number for each of the three caches above:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-c 1g&lt;BR /&gt;-iqmc 154000&lt;BR /&gt;-iqtc 154000&lt;BR /&gt;-iqlm 154000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should give you enough memory to do the loads and have other stuff running.&amp;nbsp; If your total RAM on the host is less than 512gb, adjust the above number accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Nov 2013 23:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problems-loading-data-into-iq/qaa-p/9824095#M3523663</guid>
      <dc:creator>markmumy</dc:creator>
      <dc:date>2013-11-24T23:45:08Z</dc:date>
    </item>
  </channel>
</rss>

