<?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: sql loader performance in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024924#M909830</link>
    <description>hi again,&lt;BR /&gt;&lt;BR /&gt;Concerning the "rebuilding" of indexes:&lt;BR /&gt; &lt;BR /&gt;Note that you can speed up the index rebuild/create via the "parallel" option (In an archive log mode database, the nologging option)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would not drop the indexes though! Better set them unusable: alter index t_idx2 unusable;&lt;BR /&gt;&lt;BR /&gt;Benchmark to see for yourself..&lt;BR /&gt;&lt;BR /&gt;If I use rebuild (meaning i set them unusable), I cannot lose them.  I cannot accidently have one "go missing".  People will call and say "hey, I'm getting a strange error about index such and such being unusable -- whats up with that".&lt;BR /&gt;&lt;BR /&gt;If I use DROP / CREATE -- what will happen if the DROP succeeds, but the create fails for whatever reason (script bombs out, out of temp, whatever).  Index has gone missing -- no one checks the script log -- and then you spend the next day or two trying to figure out why performance has gone down the tubes ("oh they say the next day, we 'lost' an index").&lt;BR /&gt;&lt;BR /&gt;So, if you use ususable/rebuild -- you'll not lose an index, you'll be told your script bombed, you fix it and the system runs smoothing (except for that minor annoyed person who hit your error)&lt;BR /&gt;&lt;BR /&gt;If you use drop/create -- you'll lose an index someday (maybe many days).  You'll not be told your script bombed.  Your users will just experience slower response times (if they get the answer back at all), you'll be flooded with calls about "slowness" and then hopefully you can actually track down the index that has gone missing this time. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may also consider:&lt;BR /&gt;- increasing the sort_area_size if not already.&lt;BR /&gt;&lt;BR /&gt;- increasing db_file_multi_block_read_count, if not at OS limits already.&lt;BR /&gt;&lt;BR /&gt;- make sure the data you are reading is spread out across multiple devices (else you might just be introducing massive disk contention).&lt;BR /&gt;&lt;BR /&gt;- speed up your disk access -- db file scattered read is sequential IO (believe it or not).  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
    <pubDate>Wed, 16 Jul 2003 09:41:22 GMT</pubDate>
    <dc:creator>Yogeeraj_1</dc:creator>
    <dc:date>2003-07-16T09:41:22Z</dc:date>
    <item>
      <title>sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024912#M909818</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have a sql loader performance problem, the window period to complete a load of 210 files(14500 rows each) takes approx.12 hrs.&lt;BR /&gt;Any ideas how I could bring the load time down?&lt;BR /&gt;&lt;BR /&gt;The tables being loaded to are indexed; partitioned &amp;amp; NOLOGGING enabled,the load method is conventional.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Wed, 16 Jul 2003 05:03:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024912#M909818</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-16T05:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024913#M909819</link>
      <description>Hi Dean,&lt;BR /&gt;I think we need more information :&lt;BR /&gt;- type of system&lt;BR /&gt;- type of database&lt;BR /&gt;- ...&lt;BR /&gt;&lt;BR /&gt;For example, for oracle I would say to use "direct" load (and rebuild the indexes afterwards).&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Tom Geudens</description>
      <pubDate>Wed, 16 Jul 2003 05:30:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024913#M909819</guid>
      <dc:creator>Tom Geudens</dc:creator>
      <dc:date>2003-07-16T05:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024914#M909820</link>
      <description>If you want to optimize performance for SQL*Loader here are a few things  &lt;BR /&gt;to consider (for direct and conventional paths):  &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt;o  Make logical record processing efficient.  &lt;BR /&gt; &lt;BR /&gt;   - One-to-one mapping of physical to logical records.  Avoid continueif  &lt;BR /&gt;     and concatenate.  &lt;BR /&gt; &lt;BR /&gt;   - Make it easy for the software to figure out physical record  &lt;BR /&gt;     boundaries.  That is, use the file processing option string "FIX  &lt;BR /&gt;     nnn" or "VAR".  If you use the default (stream mode), on most  &lt;BR /&gt;     platforms (e.g., UNIX) SQL*Loader has to scan each physical record  &lt;BR /&gt;     for the terminating newline character.  &lt;BR /&gt; &lt;BR /&gt;  &lt;BR /&gt;o  Make field setting efficient.  &lt;BR /&gt; &lt;BR /&gt;   Field setting is the process of mapping the "fields" in the datafile  &lt;BR /&gt;   to their corresponding columns in the database.  The mapping function  &lt;BR /&gt;   is controlled by the description of the fields in the control file.   &lt;BR /&gt;   Field setting is the biggest consumer of CPU time for most loads.  &lt;BR /&gt;  &lt;BR /&gt;   - Avoid delimited fields; use positional fields.  If you use  &lt;BR /&gt;     delimited fields, SQL*Loader has to scan the input data looking  &lt;BR /&gt;     for the delimiter(s)/enclosure(s).  If you use positional fields,  &lt;BR /&gt;     SQL*Loader just increments a pointer to get to the next field  &lt;BR /&gt;     (very fast).  &lt;BR /&gt;  &lt;BR /&gt;   - If you are using positional fields, avoid trimming white space. &lt;BR /&gt;     That is, use PRESERVE BLANKS.  &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt;Note that a common theme in points 1 and 2 above is to avoid scanning  &lt;BR /&gt;the input data.  &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt;o  Make conversions efficient.  &lt;BR /&gt; &lt;BR /&gt;   There are several conversions that SQL*Loader does for you;  &lt;BR /&gt;   character set conversions and datatype conversions.  &lt;BR /&gt;  &lt;BR /&gt;   - Avoid character set conversions if you can.  SQL*Loader supports  &lt;BR /&gt;     three character sets:  &lt;BR /&gt;  &lt;BR /&gt;     a) Client character set (NLS_LANG of the sqlldr process.)  &lt;BR /&gt;     b) Server character set.  &lt;BR /&gt;     c) Datafile character set.  &lt;BR /&gt;  &lt;BR /&gt;     Performance is optimized if all three are the same, most importantly  &lt;BR /&gt;     b) and c).  Also, memory for character set conversion buffers is not  &lt;BR /&gt;     allocated if these are the same.  &lt;BR /&gt;  &lt;BR /&gt;   - Avoid multi-byte character sets if you can.  &lt;BR /&gt;  &lt;BR /&gt;   - As for datatype conversions (SQL*Loader datatype to database column  &lt;BR /&gt;     datatype), char to char is efficient if the same character set is in  &lt;BR /&gt;     use for the datafile and the server.  That is, no conversion is fast.  &lt;BR /&gt;     Therefore, try to minimize the number of conversions that you have &lt;BR /&gt;     to do.  &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt;o  If you can, use the "unrecoverable" option on direct path loads. &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;o  Even for conventional path loads, always run SQL*Loader directly on the server rather than across a network. &lt;BR /&gt;.&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jul 2003 05:34:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024914#M909820</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-07-16T05:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024915#M909821</link>
      <description>Hi Tom,&lt;BR /&gt;&lt;BR /&gt;The server is a Sun server runin Oracle 8.1.7.0.0. I dont want to use direct mode since I have daily partitions &amp;amp; indexes as well as users querying the tables.&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Wed, 16 Jul 2003 05:37:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024915#M909821</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-16T05:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024916#M909822</link>
      <description>Hi Twang,&lt;BR /&gt;&lt;BR /&gt;Thanks for the input. The data to be loaded is extracted from a CSV file and not all the felds within a row are populated so using positional functionality is not viable. Do you know what the syntax is for specifying "NOLOGGING" for a sql load?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 16 Jul 2003 06:00:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024916#M909822</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-16T06:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024917#M909823</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;Sounds like&lt;BR /&gt;&lt;BR /&gt;o archives filled up or&lt;BR /&gt;o checkpoint not complete (you can look at the alert log to check those, look for cannot allocate new log)&lt;BR /&gt;o there is a unique index on the table and something else is playing with the table -- blocking you (they inserted a row you wanted to)&lt;BR /&gt;o the table is locked (is is a child table in a foreign key relationship without indexes on the fkey?)&lt;BR /&gt;&lt;BR /&gt;Are you using locally managed tablespaces?&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Wed, 16 Jul 2003 06:09:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024917#M909823</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-07-16T06:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024918#M909824</link>
      <description>Hi Yogeeraj,&lt;BR /&gt;&lt;BR /&gt;Thanks for input. The database is running in "NOACHIVE" mode. The tables have nonunique idexes and there are no foreign keys on tables.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 16 Jul 2003 06:26:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024918#M909824</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-16T06:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024919#M909825</link>
      <description>The operations can make use of no-logging mode for SQL*Loader is "direct load":&lt;BR /&gt;% sqlldr &lt;USER&gt;/&lt;PASSWD&gt; load.ctl DIRECT=TRUE    &lt;BR /&gt;&lt;BR /&gt;This is a summary of the features and restrictions of the DIRECT PATH option:&lt;BR /&gt;-Cannot load clustered tables.  &lt;BR /&gt;  &lt;BR /&gt;-There can be no active transactions in the loaded tables.  &lt;BR /&gt;  &lt;BR /&gt;-There can be no SQL functions used in the control file.  &lt;BR /&gt;  &lt;BR /&gt;-If the target table is indexed, then no SELECT statements may be issued  &lt;BR /&gt;against the table during the load.  &lt;BR /&gt;&lt;BR /&gt;&lt;/PASSWD&gt;&lt;/USER&gt;</description>
      <pubDate>Wed, 16 Jul 2003 06:28:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024919#M909825</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-07-16T06:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024920#M909826</link>
      <description>Hi again,&lt;BR /&gt;A datawarehouse by any chance ;-) ? Ok, I understand the "qualifications". It is however always a tradeoff. If you're not allowed to use the tricks, your users will have to wait longer before having the data available. If you can use the tricks, there'll be a small downtime for your users.&lt;BR /&gt;&lt;BR /&gt;Here's what I would do (having your options). I believe (check this information) you can turn the indexes to "unusable". In that state they are not updated during a load (reducing the impact for the load). Your users will get "hit" too, since their queries will be a lot less performant. After the the loads you rebuild the indexes. &lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Tom Geudens</description>
      <pubDate>Wed, 16 Jul 2003 06:38:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024920#M909826</guid>
      <dc:creator>Tom Geudens</dc:creator>
      <dc:date>2003-07-16T06:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024921#M909827</link>
      <description>Hi Tom,&lt;BR /&gt;&lt;BR /&gt;Thanks for the input, and yes its sort of a data warehouse database that for 1 day could contain approx.20 million records. I will test the load with the idexes disabled and assess load time, despite the impact users will experience.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 16 Jul 2003 06:46:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024921#M909827</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-16T06:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024922#M909828</link>
      <description>Ok Dean go for it ... and keep us posted !&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Tom Geudens&lt;BR /&gt;&lt;BR /&gt;P.S. You might want to take this up with your management / endusers. We did this and introduced SLA's (Service Level Agreements) that allow both sides (not only the enduser-side) to have a say in how things should run.&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jul 2003 07:04:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024922#M909828</guid>
      <dc:creator>Tom Geudens</dc:creator>
      <dc:date>2003-07-16T07:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024923#M909829</link>
      <description>Hi Tom,&lt;BR /&gt;&lt;BR /&gt;There was no performance improvement after altering the indexes to UNUSABLE! So what I was drop the indexes and the performance is vastly improved.....Will see how long it takes to load an hours worth of data &amp;amp; time taken to create the index.&lt;BR /&gt;&lt;BR /&gt;Thank!</description>
      <pubDate>Wed, 16 Jul 2003 08:25:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024923#M909829</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-16T08:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024924#M909830</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;Concerning the "rebuilding" of indexes:&lt;BR /&gt; &lt;BR /&gt;Note that you can speed up the index rebuild/create via the "parallel" option (In an archive log mode database, the nologging option)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would not drop the indexes though! Better set them unusable: alter index t_idx2 unusable;&lt;BR /&gt;&lt;BR /&gt;Benchmark to see for yourself..&lt;BR /&gt;&lt;BR /&gt;If I use rebuild (meaning i set them unusable), I cannot lose them.  I cannot accidently have one "go missing".  People will call and say "hey, I'm getting a strange error about index such and such being unusable -- whats up with that".&lt;BR /&gt;&lt;BR /&gt;If I use DROP / CREATE -- what will happen if the DROP succeeds, but the create fails for whatever reason (script bombs out, out of temp, whatever).  Index has gone missing -- no one checks the script log -- and then you spend the next day or two trying to figure out why performance has gone down the tubes ("oh they say the next day, we 'lost' an index").&lt;BR /&gt;&lt;BR /&gt;So, if you use ususable/rebuild -- you'll not lose an index, you'll be told your script bombed, you fix it and the system runs smoothing (except for that minor annoyed person who hit your error)&lt;BR /&gt;&lt;BR /&gt;If you use drop/create -- you'll lose an index someday (maybe many days).  You'll not be told your script bombed.  Your users will just experience slower response times (if they get the answer back at all), you'll be flooded with calls about "slowness" and then hopefully you can actually track down the index that has gone missing this time. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may also consider:&lt;BR /&gt;- increasing the sort_area_size if not already.&lt;BR /&gt;&lt;BR /&gt;- increasing db_file_multi_block_read_count, if not at OS limits already.&lt;BR /&gt;&lt;BR /&gt;- make sure the data you are reading is spread out across multiple devices (else you might just be introducing massive disk contention).&lt;BR /&gt;&lt;BR /&gt;- speed up your disk access -- db file scattered read is sequential IO (believe it or not).  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Wed, 16 Jul 2003 09:41:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024924#M909830</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-07-16T09:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024925#M909831</link>
      <description>Hi there.&lt;BR /&gt;Another idea could be like this.&lt;BR /&gt;Create a smaller database independent from &lt;BR /&gt;your production.&lt;BR /&gt;Load the data into it. At this point you can do some checks and correct errors.&lt;BR /&gt;Then insert the data into production by using &lt;BR /&gt;a sql-script.&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes</description>
      <pubDate>Wed, 16 Jul 2003 11:52:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024925#M909831</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2003-07-16T11:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024926#M909832</link>
      <description>Dean, no points for this.&lt;BR /&gt;&lt;BR /&gt;Yogeeraj,&lt;BR /&gt;&lt;BR /&gt;You will want to be careful with db_multiblock_read_count for data warehouses.  We had a large SAP system that had horrible performance after a migration from Informix.  We dropped this from 32 to 12, and performance improved considerably.  What I didn't realize, is that this parameter deals with the amount of data that can be accessed at a given time, however it has the added effect of forcing the CBO to lower the cost of FTS as well, espcially for small tables.  We had always treated it as a "more is better" setting, which probably had detrimental effects in some cases. &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Thu, 17 Jul 2003 02:52:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024926#M909832</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2003-07-17T02:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024927#M909833</link>
      <description>Hi Yogee,&lt;BR /&gt;&lt;BR /&gt;I attempted disabling the indexes and loading but there was no improvement in the load. How do you suggest I disable&amp;amp;enable the indexes in a script(syntax),because say I have 3 months worth of data and there are daily partitions with indexes?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Jul 2003 05:29:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024927#M909833</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-17T05:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024928#M909834</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;Brian is right! be cautious with the db_multiblock_read_count ...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;As for syntax:&lt;BR /&gt;If you had a table created as:&lt;BR /&gt;create table p (i integer)&lt;BR /&gt;partition by range(i)&lt;BR /&gt;(partition p1 values less than (10),&lt;BR /&gt;partition p2 values less than (20),&lt;BR /&gt;partition p3 values less than (maxvalue));&lt;BR /&gt;&lt;BR /&gt;create index l on p(i) local;&lt;BR /&gt;alter index l modify partition p1 unusable;&lt;BR /&gt;&lt;BR /&gt;then:&lt;BR /&gt;&lt;BR /&gt;alter index l modify partition p1 unusable;&lt;BR /&gt;&lt;LOAD data="https://community.hpe.com/"&gt;&lt;BR /&gt;alter index l rebuild nologging parallel 6;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Are you using "locally partitioned indexes"  or "globally partitioned indexes"? could that be one of the sources of the "problem"?&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj&lt;BR /&gt;&lt;/LOAD&gt;</description>
      <pubDate>Thu, 17 Jul 2003 09:58:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024928#M909834</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-07-17T09:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: sql loader performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024929#M909835</link>
      <description>Hi Yogee,&lt;BR /&gt;&lt;BR /&gt;Thanks for the pointers. The partitions are created as locally. I will test the unusable index suggestion and get back to you.&lt;BR /&gt;&lt;BR /&gt;Regards!</description>
      <pubDate>Thu, 17 Jul 2003 11:12:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-loader-performance/m-p/3024929#M909835</guid>
      <dc:creator>Edgar_10</dc:creator>
      <dc:date>2003-07-17T11:12:32Z</dc:date>
    </item>
  </channel>
</rss>

