<?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: create a sub-partition table in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380269#M864261</link>
    <description>Hi Jean-Luc,&lt;BR /&gt;&lt;BR /&gt;Thanks for the info, we running Oracle 9.2.0.4. Please advise as to what the syntax would be for subpartitions in date/time format.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!</description>
    <pubDate>Thu, 16 Sep 2004 08:45:34 GMT</pubDate>
    <dc:creator>Edgar_8</dc:creator>
    <dc:date>2004-09-16T08:45:34Z</dc:date>
    <item>
      <title>create a sub-partition table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380265#M864257</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Does anyone know how to create a partitioned subpartitioned table. For example with have daily tables which&lt;BR /&gt;is partitioned by a date column per hour. What would the sql be to create additional subpartions within the&lt;BR /&gt;hourly partitions?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!</description>
      <pubDate>Thu, 16 Sep 2004 05:40:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380265#M864257</guid>
      <dc:creator>Edgar_8</dc:creator>
      <dc:date>2004-09-16T05:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: create a sub-partition table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380266#M864258</link>
      <description>Hi Edgar,&lt;BR /&gt;&lt;BR /&gt;I don't think you should do this because you'll get to many partitions: more than 8000 per year... &lt;BR /&gt;&lt;BR /&gt;And I don't see any command to do that.&lt;BR /&gt;&lt;BR /&gt;Eric &lt;BR /&gt;</description>
      <pubDate>Thu, 16 Sep 2004 06:40:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380266#M864258</guid>
      <dc:creator>Eric Antunes</dc:creator>
      <dc:date>2004-09-16T06:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: create a sub-partition table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380267#M864259</link>
      <description>Edgar,&lt;BR /&gt;&lt;BR /&gt;You can partition a table (with sub-partition) by rang /hash or range / list.&lt;BR /&gt;For the later, I'm not to sure it works with older oracle versions (what is your Oracle version ?)&lt;BR /&gt;Form the documentation (10G),we have this example :&lt;BR /&gt;CREATE TABLE quarterly_regional_sales&lt;BR /&gt;      (deptno number, item_no varchar2(20),&lt;BR /&gt;       txn_date date, txn_amount number, state varchar2(2))&lt;BR /&gt;  TABLESPACE ts4&lt;BR /&gt;  PARTITION BY RANGE (txn_date)&lt;BR /&gt;    SUBPARTITION BY LIST (state)&lt;BR /&gt;      (PARTITION q1_1999 VALUES LESS THAN (TO_DATE('1-APR-1999','DD-MON-YYYY'))&lt;BR /&gt;         (SUBPARTITION q1_1999_northwest VALUES ('OR', 'WA'),&lt;BR /&gt;          SUBPARTITION q1_1999_southwest VALUES ('AZ', 'UT', 'NM'),&lt;BR /&gt;          SUBPARTITION q1_1999_northeast VALUES ('NY', 'VM', 'NJ'),&lt;BR /&gt;          SUBPARTITION q1_1999_southeast VALUES ('FL', 'GA'),&lt;BR /&gt;          SUBPARTITION q1_1999_northcentral VALUES ('SD', 'WI'),&lt;BR /&gt;          SUBPARTITION q1_1999_southcentral VALUES ('OK', 'TX')&lt;BR /&gt;         ),&lt;BR /&gt;       PARTITION q2_1999 VALUES LESS THAN ( TO_DATE('1-JUL-1999','DD-MON-YYYY'))&lt;BR /&gt;         (SUBPARTITION q2_1999_northwest VALUES ('OR', 'WA'),&lt;BR /&gt;          SUBPARTITION q2_1999_southwest VALUES ('AZ', 'UT', 'NM'),&lt;BR /&gt;          SUBPARTITION q2_1999_northeast VALUES ('NY', 'VM', 'NJ'),&lt;BR /&gt;          SUBPARTITION q2_1999_southeast VALUES ('FL', 'GA'),&lt;BR /&gt;          SUBPARTITION q2_1999_northcentral VALUES ('SD', 'WI'),&lt;BR /&gt;          SUBPARTITION q2_1999_southcentral VALUES ('OK', 'TX')&lt;BR /&gt;         ),&lt;BR /&gt;       PARTITION q3_1999 VALUES LESS THAN (TO_DATE('1-OCT-1999','DD-MON-YYYY'))&lt;BR /&gt;         (SUBPARTITION q3_1999_northwest VALUES ('OR', 'WA'),&lt;BR /&gt;          SUBPARTITION q3_1999_southwest VALUES ('AZ', 'UT', 'NM'),&lt;BR /&gt;          SUBPARTITION q3_1999_northeast VALUES ('NY', 'VM', 'NJ'),&lt;BR /&gt;          SUBPARTITION q3_1999_southeast VALUES ('FL', 'GA'),&lt;BR /&gt;          SUBPARTITION q3_1999_northcentral VALUES ('SD', 'WI'),&lt;BR /&gt;          SUBPARTITION q3_1999_southcentral VALUES ('OK', 'TX')&lt;BR /&gt;         ),&lt;BR /&gt;       PARTITION q4_1999 VALUES LESS THAN ( TO_DATE('1-JAN-2000','DD-MON-YYYY'))&lt;BR /&gt;         (SUBPARTITION q4_1999_northwest VALUES ('OR', 'WA'),&lt;BR /&gt;          SUBPARTITION q4_1999_southwest VALUES ('AZ', 'UT', 'NM'),&lt;BR /&gt;          SUBPARTITION q4_1999_northeast VALUES ('NY', 'VM', 'NJ'),&lt;BR /&gt;          SUBPARTITION q4_1999_southeast VALUES ('FL', 'GA'),&lt;BR /&gt;          SUBPARTITION q4_1999_northcentral VALUES ('SD', 'WI'),&lt;BR /&gt;          SUBPARTITION q4_1999_southcentral VALUES ('OK', 'TX')&lt;BR /&gt;         )&lt;BR /&gt;      );&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Therefore you can have a range partition paer date and subpartition, list each hour.&lt;BR /&gt;What about that ?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jean-Luc&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Sep 2004 06:43:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380267#M864259</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2004-09-16T06:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: create a sub-partition table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380268#M864260</link>
      <description>I see that it is possible to create a partition of another partition on 10g. But on Oracle 8 it is not. I don't know if it is on 9i...?</description>
      <pubDate>Thu, 16 Sep 2004 06:53:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380268#M864260</guid>
      <dc:creator>Eric Antunes</dc:creator>
      <dc:date>2004-09-16T06:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: create a sub-partition table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380269#M864261</link>
      <description>Hi Jean-Luc,&lt;BR /&gt;&lt;BR /&gt;Thanks for the info, we running Oracle 9.2.0.4. Please advise as to what the syntax would be for subpartitions in date/time format.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!</description>
      <pubDate>Thu, 16 Sep 2004 08:45:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380269#M864261</guid>
      <dc:creator>Edgar_8</dc:creator>
      <dc:date>2004-09-16T08:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: create a sub-partition table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380270#M864262</link>
      <description>Edgar,&lt;BR /&gt;&lt;BR /&gt;Regarding the following link this is already available with oracle9i release2.&lt;BR /&gt;&lt;A href="http://www.oracle.com/oramag/oracle/02-jan/o12part.html" target="_blank"&gt;http://www.oracle.com/oramag/oracle/02-jan/o12part.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I don't have the syntax ready yet, I believe you can write it from the example.&lt;BR /&gt;&lt;BR /&gt;Saying that, it seems you weant to use same field for partition &amp;amp; sub-partition.&lt;BR /&gt;Have a go with the To_char functionm and let us know ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jean-Luc&lt;BR /&gt;&lt;BR /&gt;PS : if you use the same field for partition and sub-partition , why would you require sub-partitions ?</description>
      <pubDate>Thu, 16 Sep 2004 09:19:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-sub-partition-table/m-p/3380270#M864262</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2004-09-16T09:19:08Z</dc:date>
    </item>
  </channel>
</rss>

