資料庫資料歸檔,有什麼好辦法

時間 2021-08-30 09:05:38

1樓:尚學堂科技****

首先,資料存檔(data archiving)是將不再經常使用的資料移到一個單獨的儲存裝置來進行長期儲存的過程。

mysql:

1、複製表並且按照條件插入資料(此種方法除了主鍵索引不包括其他索引)

create table lime_survey_549656_20151001 as select * from lime_survey_549656  where submitdate < "2015-10-01 00:00:00";

alter table lime_survey_549656_20151001 change id id int primary key auto_increment;

create table lime_survey_186194_20151001 as select * from lime_survey_186194 where submitdate < "2015-10-01 00:00:00";

alter table lime_survey_186194_20151001 change id id int primary key auto_increment;

create table lime_survey_279575_20151001 as select * from lime_survey_279575 where submitdate < "2015-10-01 00:00:00";

alter table lime_survey_279575_20151001 change id id int primary key auto_increment;

2、資料歸檔成功後清理資料sql:

deletefrom lime_survey_549656  where submitdate < "2015-10-0100:00:00";

deletefrom lime_survey_186194  where submitdate < "2015-10-0100:00:00";

deletefrom lime_survey_279575  where submitdate < "2015-10-0100:00:00";

sql server:

利用sql server提供的分割槽表

資料庫是什麼,什麼是資料庫

資料的一個集合,用來存資料,可以對資料進行管理.資料庫,顧名思義,是存入資料的倉庫。只不過這個倉庫是在計算機儲存裝置上的,而且資料是按一定格式存放的。當人們收集了大量的資料後,應該把它們儲存起來進入近一步的處理,進一步的抽取有用的資訊。當年人們把資料存放在檔案櫃中,可現在隨著社會的發展,資料量急劇增...

access中web資料庫和資料庫有什麼區別

踏實點點 看下面的回答都應該是不如你的意,他們應該是沒有去看那個版本的新建資料庫功能。綜合得到的知識,新建web資料庫是作為共享訪問資料庫的需要,而資料庫就是普通本地開發的資料庫。開發使用安裝在伺服器上的應該都沒有限制吧 不知道你想表達的是什麼,不過他們都是資料庫的一種,只不過每中資料庫的用途和功能...

資料庫常用函式,常用資料庫有哪些?

大野瘦子 1 系統資訊函式 系統資訊函式用來查詢mysql資料庫的系統資訊。函式 select version 5.0.67 community nt connection id 返回伺服器的連線數 database schema 返回當前資料庫名 user system user 返回當前使用者 ...