如何准备以下内容的步骤?

时间:2012-10-26 10:41:03

标签: mysql mysqldump

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导出2011年10月31日之后的所有数据 和t_keyword_Stat_conversion表。
  2. 将备份导入ICE实例(用于最大压缩)或ARCHIVE表。
  3. 需要在2011年10月之前删除上表中DB1中的分区
  4. 然后我们需要一个磁盘使用情况的前后摘要

0 个答案:

没有答案