1
CREATE TABLE `t_keyword_stat_ga` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `keyword_id` int(11) DEFAULT NULL,
  `targeturl_id` int(11) DEFAULT NULL,
  `entrances` int(11) DEFAULT NULL,
  `track_date` date DEFAULT NULL,
  `traffic_date` date DEFAULT NULL,
  `own_domain_id` int(11) DEFAULT NULL,
  `medium` varchar(255) DEFAULT NULL,
  `pageviews` int(11) DEFAULT NULL,
  `exits` int(11) DEFAULT NULL,
  `bounces` int(11) DEFAULT NULL,
  `source` varchar(255) DEFAULT NULL,
  KEY `id` (`id`),
  KEY `traffic_date` (`traffic_date`),
  KEY `FK_keywordStatGA_targeturl` (`targeturl_id`,`traffic_date`),
  KEY `own_domain_id` (`own_domain_id`,`traffic_date`),
  KEY `keyword_id` (`keyword_id`,`own_domain_id`,`traffic_date`)
) ENGINE=InnoDB AUTO_INCREMENT=1707411331 DEFAULT CHARSET=utf8;


 CREATE TABLE `t_keyword_conversion_ga` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `own_domain_id` int(11) DEFAULT NULL,
  `keyword_id` int(11) DEFAULT NULL,
  `traffic_date` date DEFAULT NULL,
  `targeturl_id` int(11) DEFAULT NULL,
  `entrance` int(11) DEFAULT NULL,
  `transactions` int(11) DEFAULT NULL,
  `item_revenue` decimal(9,2) DEFAULT NULL,
  `goal1completions` int(11) DEFAULT NULL,
  `goal2completions` int(11) DEFAULT NULL,
  `goal3completions` int(11) DEFAULT NULL,
  `goal4completions` int(11) DEFAULT NULL,
  `goal5completions` int(11) DEFAULT NULL,
  `goal6completions` int(11) DEFAULT NULL,
  `goal7completions` int(11) DEFAULT NULL,
  `goal8completions` int(11) DEFAULT NULL,
  `goal9completions` int(11) DEFAULT NULL,
  `goal10completions` int(11) DEFAULT NULL,
  `goal1Value` decimal(9,2) DEFAULT NULL,
  `goal2Value` decimal(9,2) DEFAULT NULL,
  `goal3Value` decimal(9,2) DEFAULT NULL,
  `goal4Value` decimal(9,2) DEFAULT NULL,
  `goal5Value` decimal(9,2) DEFAULT NULL,
  `goal6Value` decimal(9,2) DEFAULT NULL,
  `goal7Value` decimal(9,2) DEFAULT NULL,
  `goal8Value` decimal(9,2) DEFAULT NULL,
  `goal9Value` decimal(9,2) DEFAULT NULL,
  `goal10Value` decimal(9,2) DEFAULT NULL,
  `medium` varchar(255) DEFAULT NULL,
  `source` varchar(255) DEFAULT NULL,
  KEY `id` (`id`),
  KEY `keyword_id` (`keyword_id`),
  KEY `traffic_date` (`traffic_date`),
  KEY `own_domain_id` (`own_domain_id`,`traffic_date`),
  KEY `targeturl_id` (`targeturl_id`)
) ENGINE=InnoDB AUTO_INCREMENT=526248221 DEFAULT CHARSET=utf8;

我有一个像 _keyword_Stat_ga 和 t_keyword_Stat_conversion 这样的表

  1. 我需要从t_keyword_Stat_ga andt_keyword_Stat_conversion表中导出 2011 年 10 月 31 日之后的所有数据。
  2. 将备份导入 ICE 实例(以实现最大压缩)或 ARCHIVE 表。
  3. 需要在 2011 年 10 月之前删除上述表中 DB1 中的分区
  4. 然后我们需要磁盘使用情况的前后总结
4

0 回答 0