About 311,000 results
Open links in new tab
  1. ALTER TABLE - Oracle Help Center

    Use the ALTER TABLE statement to alter the definition of a nonpartitioned table, a partitioned table, a table partition, or a table subpartition.

  2. oracle database - Creating List partition to an already Existing Table ...

    Nov 30, 2021 · I am trying to Create a list partition Based on the column "REFRESH_FLAG_Y" which has only Y and N as its Values, Below is the Alter Table used to Create the partition. …

  3. Oracle Live SQL - Script: Creating a List Partitioned Table

    Add a new partition to the table for values that do not map to any other partition. ALTER TABLE sales_by_region ADD PARTITION VALUES (DEFAULT) Table altered.

  4. Altering a table to be partitioned and compressed - Ask TOM

    Oct 30, 2023 · using alter table modify command - we have an option to specify tablespace for index in "update indexes" clause.

  5. Altering and Managing Partition Tables in Oracle

    To exchange a partition of a range, hash, or list-partitioned table with a nonpartitioned table, or the reverse, use the ALTER TABLE ... EXCHANGE PARTITION statement. An example of …

  6. How to Check and Modify Default Attributes of Tables and …

    Aug 13, 2020 · SELECT 'ALTER TABLE ' ||TABLE_OWNER ||'.' ||TABLE_NAME ||' MODIFY DEFAULT ATTRIBUTES FOR PARTITION ' ||PARTITION_NAME ||' TABLESPACE …

  7. Changing a Nonpartitioned Table into a Partitioned Table

    A non-partitioned table can be converted to a partitioned table with a MODIFY clause added to the ALTER TABLE SQL statement. In addition, the keyword ONLINE can be specified, enabling …

  8. Oracle Table and Index Partitions - DBA Genesis Support

    Optimize performance with Oracle table and index partitioning. Partitioning allows tables and indexes to be divided into small parts for easy management inside database. You can create …

  9. Modify non partitioned table to partitioned online - Ask TOM

    Nov 18, 2021 · create table t ( c1, c2 ) as select level , date'2019-12-31' + level from dual connect by level <= 100; alter table t modify partition by range ( c2 ) interval ( interval '1' month ) ( …

  10. How do I alter my existing table to create a range partition in Oracle

    Mar 11, 2016 · create table my_tab ( a number(38,0), b number(38,0)); alter table my_tab modify partition by range (a) interval (1000) ( partition p1 values less than (1000)) online; You could …

  11. Some results have been removed
Refresh