How to automatically add partitions in a stored procedure

Source: Internet
Author: User
Declare  V_ SQL  Varchar2 ( 1000  ); Table_name  Varchar2 ( 100  ); I _day  Varchar2 ( 8 ): =   '  20120611  '  ; I _l_day Varchar2 ( 8  );  Begin  I _l_day:  = To_char (to_date (I _day, '  Yyyymmdd  ' ) +   1 ), '  Yyyymmdd  '  ); Table_name: =   Upper ( '  Table Name  '  ); V_ SQL:  =   '  ALTER TABLE  '   |   '   '   | Table_name |   '   '  |                  '  Add Partition  '   |   '   '   |   '  Part _  '   | I _day |   '   '   |                  '  Values less ( '''   | I _l_day |   '''  )  '  ; Dbms_output.put_line (v_ SQL );  End ;

In this way, partitions are automatically created by day. It can also be written as a process, which is good for every call.

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.