Oracle Table Partitioning Experience

Source: Internet
Author: User

Since the system is a modification of the former batch system, it is necessary to partition the table

1, has established the non-partitioned table, cannot make any table partition operation, such as: Add, delete, merge, split can not operate

2, the partitioned table retains at least 1 partitions, that is, cannot be completely deleted

3, if there is a default partition, cannot add the specified list value partition, can only split the original default partition to be divided into a number of partitions, and retain the default partition

CREATE TABLE T

(

Task_seqno VARCHAR2 (10),

Bankno VARCHAR2 (5)

) partition by list (Bankno)

(

Partition T_BNK values (DEFAULT)

);

--Split the default partition, T is the table name, T_BNK is the default partition, t_bnk_202 is the partition with the Value 202 divided, xxxtbs_202 is the tablespace name

Alter table T split partition T_BNK values (202) into (partition t_bnk_202 tablespace xxxtbs_202,partition T_BNK);

Oracle Table Partitioning Experience

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.