Changes between Version 22 and Version 23 of Partitioning


Ignore:
Timestamp:
11/05/25 20:21:06 (3 weeks ago)
Author:
222039
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Partitioning

    v22 v23  
    106106}}}
    107107
     108Архивирање на стари податоци (Опција: Креирање на Архивска табела):
     109{{{#!div
     110{{{#!sql
     111CREATE TABLE weatherdata_archive_2024_01 LIKE weatherdata;
     112ALTER TABLE weatherdata_archive_2024_01 REMOVE PARTITIONING;
     113
     114-- Move data from partition to archive
     115INSERT INTO weatherdata_archive_2024_01
     116SELECT * FROM weatherdata PARTITION (p_2024_01);
     117
     118-- Drop partition from weatherdata
     119ALTER TABLE weatherdata DROP PARTITION p_2024_01;
     120}}}
     121}}}
     122
    108123== Тестирање и Перформанси
    109124