BC remote Oracle DBA - Call (800) 766-1884  
Oracle Consulting Oracle Training Development

Remote DBA

Remote DBA Plans  

Remote DBA Service

Remote DBA RAC

   
Remote DBA Oracle Home
Remote DBA Oracle Training
Remote DBA SQL Tuning Consulting
Remote DBA Oracle Tuning Consulting
Remote DBA Data Warehouse Consulting
Remote DBA Oracle Project Management
Remote DBA Oracle Security Assessment
Remote DBA Unix Consulting
Burleson Books
Burleson Articles
Burleson Web Courses
Burleson Qualifications
Oracle Links
Remote DBA Oracle Monitoring
Remote DBA Support Benefits
Remote DBA Plans & Prices
Our Automation Strategy
What We Monitor
Oracle Apps Support
Print Our Brochure
Contact Us (e-mail)
Oracle Job Opportunities
Oracle Consulting Prices





   

 

 

 

Remote DBA services

Remote DBA Support

Remote DBA RAC

Remote DBA Reasons

Remote Oracle Tuning

Remote DBA Links

Oracle DBA Support

Oracle DBA Forum

Oracle Disaster

Oracle Training

Oracle Tuning

Oracle Training

 Remote DBA SQL Server

Remote MSSQL Consulting

Oracle DBA Hosting

Oracle License Negotiation

 

 


 

 

 

 

 
 

EnterpriseDB: Alter Partitioned Table

Oracle Tips by Burleson Consulting
 

The ALTER syntax is the same as for a regular table as described above.   When you alter the base table, your alterations will automatically be applied to the partitioned table.  You should not modify the partitioned table directly.  Always apply changes to the base table instead.

Here I am altering the table to add a new char column:

ALTER TABLE base_table ADD new_char_column VARCHAR2(10);

edb=# ALTER TABLE base_table ADD new_char_column VARCHAR2(10);

ALTER TABLE

edb=# desc base_table;

                  Table "public.base_table"

     Column      |              Type              | Modifiers
-----------------+--------------------------------+-----------
 pk_field        | numeric                        | not null
 dt_field        | timestamp(0) without time zone |
 char_field      | character varying(100)         |
 new_char_column | character varying(10)          |

Indexes:

    "base_table_pkey" PRIMARY KEY, btree (pk_field)

Triggers:

    base_table_handler
    BEFORE INSERT OR DELETE OR UPDATE
    ON base_table
    FOR EACH ROW
    EXECUTE PROCEDURE base_table_handler_base_table()

edb=# desc base_table_part_200601;

            Table "public.base_table_part_200601"

     Column      |              Type              | Modifiers
-----------------+--------------------------------+-----------

 
pk_field        | numeric                        | not null
 dt_field        | timestamp(0) without time zone |
 char_field      | character varying(100)         |
 new_char_column | character varying(10)          |

Indexes:

    "partition1_part_key" btree (dt_field)

Check constraints:

    "base_table_part_200601_dt_field_check" CHECK (|
        to_number(to_char(dt_field, 'YYYYMMDD'::character varying)::text)
              >= 20060101::numeric AND
        to_number(to_char(dt_field, 'YYYYMMDD'::character varying)::text)
              <= 20060131::numeric)

Inherits: base_table

GRANT PARTITIONED TABLE

Grants permissions as you would on a regular table.  Grant to the base table instead of the partitioned tables.

REVOKE PARTITIONED TABLE

You revoke permissions as you would a regular table.

DROP PARTITIONED TABLE

We drop the table as we would a regular table.  We drop the base table with the CASCADE keyword.  When we drop the table, it will also drop the child partitions, the indexes and the trigger.

DROP TABLE base_table CASCADE;

edb=# DROP TABLE base_table CASCADE;

NOTICE:  drop cascades to table base_table_part_200603

NOTICE:  drop cascades to

            constraint base_table_part_200603_dt_field_check

            on table base_table_part_200603

NOTICE:  drop cascades to table base_table_part_200602

NOTICE:  drop cascades to

            constraint base_table_part_200602_dt_field_check

            on table base_table_part_200602

NOTICE:  drop cascades to table base_table_part_200601

NOTICE:  drop cascades to

            constraint base_table_part_200601_dt_field_check

            on table base_table_part_200601

DROP TABLE

edb=#




This is an excerpt from the book "EnterpriseDB: The Definitive Reference" by Rampant TechPress.


Expert Remote DBA

BC is America's oldest and largest Remote DBA Oracle support provider.  Get real Remote DBA experts, call
BC Remote DBA today.

 

 

Remote DBA Service
 

Oracle Tuning Book

 

Advance SQL Tuning Book 

BC Oracle support

Oracle books by Rampant

Oracle monitoring software

 

 

 

 

 

 

BC Remote Oracle Support

Remote DBA

Remote DBA Services

Copyright © 1996 -  2013 by Burleson. All rights reserved.

Oracle® is the registered trademark of Oracle Corporation.



Hit Counter