zoukankan      html  css  js  c++  java
  • 数据库建模 全量表导入

    create_databaseAndTable.sql   ------------------------------------------------

    -- 1 建立ODS层库:
    CREATE DATABASE IF NOT EXISTS `itcast_ods`;

    -- 2 在ODS层库中, 构建两张ODS的事实表
    -- 2.1: 构建访问咨询表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    CREATE EXTERNAL TABLE IF NOT EXISTS itcast_ods.web_chat_ems (
    id INT comment '主键',
    create_date_time STRING comment '数据创建时间',
    session_id STRING comment '七陌sessionId',
    sid STRING comment '访客id',
    create_time STRING comment '会话创建时间',
    seo_source STRING comment '搜索来源',
    seo_keywords STRING comment '关键字',
    ip STRING comment 'IP地址',
    area STRING comment '地域',
    country STRING comment '所在国家',
    province STRING comment '省',
    city STRING comment '城市',
    origin_channel STRING comment '投放渠道',
    user_match STRING comment '所属坐席',
    manual_time STRING comment '人工开始时间',
    begin_time STRING comment '坐席领取时间 ',
    end_time STRING comment '会话结束时间',
    last_customer_msg_time_stamp STRING comment '客户最后一条消息的时间',
    last_agent_msg_time_stamp STRING comment '坐席最后一下回复的时间',
    reply_msg_count INT comment '客服回复消息数',
    msg_count INT comment '客户发送消息数',
    browser_name STRING comment '浏览器名称',
    os_info STRING comment '系统名称'
    )comment '访问会话信息表'
    PARTITIONED BY(starts_time STRING) -- 用于指定抽取表时间
    ROW FORMAT DELIMITED FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_ods.db/web_chat_ems_ods'
    TBLPROPERTIES ('orc.compress'='ZLIB');

    -- 2.2 构建 访问咨询表的副表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    CREATE EXTERNAL TABLE IF NOT EXISTS itcast_ods.web_chat_text_ems (
    id INT COMMENT '主键来自MySQL',
    referrer STRING comment '上级来源页面',
    from_url STRING comment '会话来源页面',
    landing_page_url STRING comment '访客着陆页面',
    url_title STRING comment '咨询页面title',
    platform_description STRING comment '客户平台信息',
    other_params STRING comment '扩展字段中数据',
    history STRING comment '历史访问记录'
    ) comment 'EMS-PV测试表'
    PARTITIONED BY(start_time STRING)
    ROW FORMAT DELIMITED
    FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_ods.db/web_chat_text_ems_ods'
    TBLPROPERTIES ('orc.compress'='ZLIB');

    -- 3 构建 DWD层
    -- 3.1 先构建DWD层的数据库:
    CREATE DATABASE IF NOT EXISTS `itcast_dwd`;

    --3.2 在DWD层中创建DWD表:
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    create table if not exists itcast_dwd.visit_consult_dwd(
    session_id STRING comment '七陌sessionId',
    sid STRING comment '访客id',
    create_time bigint comment '会话创建时间',
    seo_source STRING comment '搜索来源',
    ip STRING comment 'IP地址',
    area STRING comment '地域',
    msg_count int comment '客户发送消息数',
    origin_channel STRING COMMENT '来源渠道',
    referrer STRING comment '上级来源页面',
    from_url STRING comment '会话来源页面',
    landing_page_url STRING comment '访客着陆页面',
    url_title STRING comment '咨询页面title',
    platform_description STRING comment '客户平台信息',
    other_params STRING comment '扩展字段中数据',
    history STRING comment '历史访问记录',
    hourinfo string comment '小时'
    )
    comment '访问咨询DWD表'
    partitioned by(yearinfo String, quarterinfo string , monthinfo String, dayinfo string)
    row format delimited fields terminated by ' '
    stored as orc
    location '/user/hive/warehouse/itcast_dwd.db/visit_consult_dwd'
    tblproperties ('orc.compress'='SNAPPY');

    /*
    说明:
    1. 对create_time 切割为 年 季度 月 天 小时
    2. 对 create_time 转换为时间戳(方便后面根据日期计算)
    此处在生产中 有时候也会统一某一种日期格式也是ok的
    */

    --4 构建 DWS层: 二张表
    --4.1: 创建DWS层的数据库
    CREATE DATABASE IF NOT EXISTS `itcast_dws`;

    --4.2: 创建访问量的DWS表:
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;

    CREATE TABLE IF NOT EXISTS itcast_dws.visit_dws (
    sid_total INT COMMENT '根据sid去重求count',
    sessionid_total INT COMMENT '根据sessionid去重求count',
    ip_total INT COMMENT '根据IP去重求count',
    area STRING COMMENT '区域信息',
    seo_source STRING COMMENT '搜索来源',
    origin_channel STRING COMMENT '来源渠道',
    hourinfo STRING COMMENT '创建时间,统计至小时',
    time_str STRING COMMENT '时间明细',
    from_url STRING comment '会话来源页面',
    groupType STRING COMMENT '产品属性类型:1.地区;2.搜索来源;3.来源渠道;4.会话来源页面;5.总访问量',
    time_type STRING COMMENT '时间聚合类型:1、按小时聚合;2、按天聚合;3、按月聚合;4、按季度聚合;5、按年聚合;'
    )
    comment 'EMS访客日志dws表'
    PARTITIONED BY(yearinfo STRING,quarterinfo STRING,monthinfo STRING,dayinfo STRING)
    ROW FORMAT DELIMITED
    FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_dws.db/visit_dws'
    TBLPROPERTIES ('orc.compress'='SNAPPY');

    --4.3: 构建 咨询量的表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;

    CREATE TABLE IF NOT EXISTS itcast_dws.consult_dws (
    sid_total INT COMMENT '根据sid去重求count',
    sessionid_total INT COMMENT '根据sessionid去重求count',
    ip_total INT COMMENT '根据IP去重求count',
    area STRING COMMENT '区域信息',
    origin_channel STRING COMMENT '来源渠道',
    hourinfo STRING COMMENT '创建时间,统计至小时',
    time_str STRING COMMENT '时间明细',
    groupType STRING COMMENT '产品属性类型:1.地区;2.来源渠道',
    time_type STRING COMMENT '时间聚合类型:1、按小时聚合;2、按天聚合;3、按月聚合;4、按季度聚合;5、按年聚合;'
    )
    COMMENT '咨询量DWS宽表'
    PARTITIONED BY (yearinfo string, quarterinfo STRING , monthinfo STRING, dayinfo string)
    ROW FORMAT DELIMITED FIELDS TERMINATED BY ' '
    STORED AS ORC
    LOCATION '/user/hive/warehouse/itcast_dws.db/consult_dws'
    TBLPROPERTIES ('orc.compress'='SNAPPY');

    -------------------------------------------------------------------------------------load_data_sqoop.sql

    -- 此脚本是用于放置 从 业务数据库--> ODS层操作记录
    --访问咨询主题看板:
    -- 抽取 SQL:
    SELECT
    id,create_date_time,session_id,sid,create_time,
    seo_source,seo_keywords,ip,`area`,country,province,
    city,origin_channel,`user` AS user_match,manual_time,
    begin_time,end_time,last_customer_msg_time_stamp,
    last_agent_msg_time_stamp,reply_msg_count,msg_count,
    browser_name,os_info, '2020-11-28' AS starts_time
    FROM web_chat_ems_2019_07;
    -- 通过sqoop命令来执行上述SQL
    sqoop import
    --connect jdbc:mysql://192.168.52.150:3306/nev
    --username root --password 123456
    --query "SELECT
    id,create_date_time,session_id,sid,create_time,
    seo_source,seo_keywords,ip,area,country,province,
    city,origin_channel,user AS user_match,manual_time,
    begin_time,end_time,last_customer_msg_time_stamp,
    last_agent_msg_time_stamp,reply_msg_count,msg_count,
    browser_name,os_info, '2020-11-28' AS starts_time
    FROM web_chat_ems_2019_07 where 1=1 and $CONDITIONS"
    --fields-terminated-by ' '
    --hcatalog-database itcast_ods
    --hcatalog-table web_chat_ems
    -m 3
    --split-by id

    -- 抽取SQL(副表) :

    SELECT
    id,referrer,from_url,landing_page_url,
    url_title,platform_description,
    other_params,history, '2020-11-28' AS start_time
    FROM web_chat_text_ems_2019_07;

    -- 通过sqoop命令来执行上述SQL
    sqoop import
    --connect jdbc:mysql://192.168.52.150:3306/nev
    --username root --password 123456
    --query "SELECT
    id,referrer,from_url,landing_page_url,
    url_title,platform_description,
    other_params,history, '2020-11-28' AS start_time
    FROM web_chat_text_ems_2019_07 where 1=1 and $CONDITIONS"
    --fields-terminated-by ' '
    --hcatalog-database itcast_ods
    --hcatalog-table web_chat_text_ems
    -m 3
    --split-by id

    -- 注意在 hive中进行校验时 发现原有hiveserver2的服务的堆栈内存配置过低, 导致hiveserver2出现
    -- 异常宕机问题, 对堆栈内存重新这只为 1GB , 重启服务

     

     

     ---------------------------------------------------------------------create_databaseAndTable.sql

    -- 1 建立ODS层库:
    CREATE DATABASE IF NOT EXISTS `itcast_ods`;

    -- 2 在ODS层库中, 构建两张ODS的事实表
    -- 2.1: 构建访问咨询表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    CREATE EXTERNAL TABLE IF NOT EXISTS itcast_ods.web_chat_ems (
    id INT comment '主键',
    create_date_time STRING comment '数据创建时间',
    session_id STRING comment '七陌sessionId',
    sid STRING comment '访客id',
    create_time STRING comment '会话创建时间',
    seo_source STRING comment '搜索来源',
    seo_keywords STRING comment '关键字',
    ip STRING comment 'IP地址',
    area STRING comment '地域',
    country STRING comment '所在国家',
    province STRING comment '省',
    city STRING comment '城市',
    origin_channel STRING comment '投放渠道',
    user_match STRING comment '所属坐席',
    manual_time STRING comment '人工开始时间',
    begin_time STRING comment '坐席领取时间 ',
    end_time STRING comment '会话结束时间',
    last_customer_msg_time_stamp STRING comment '客户最后一条消息的时间',
    last_agent_msg_time_stamp STRING comment '坐席最后一下回复的时间',
    reply_msg_count INT comment '客服回复消息数',
    msg_count INT comment '客户发送消息数',
    browser_name STRING comment '浏览器名称',
    os_info STRING comment '系统名称'
    )comment '访问会话信息表'
    PARTITIONED BY(starts_time STRING) -- 用于指定抽取表时间
    ROW FORMAT DELIMITED FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_ods.db/web_chat_ems_ods'
    TBLPROPERTIES ('orc.compress'='ZLIB');

    -- 2.2 构建 访问咨询表的副表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    CREATE EXTERNAL TABLE IF NOT EXISTS itcast_ods.web_chat_text_ems (
    id INT COMMENT '主键来自MySQL',
    referrer STRING comment '上级来源页面',
    from_url STRING comment '会话来源页面',
    landing_page_url STRING comment '访客着陆页面',
    url_title STRING comment '咨询页面title',
    platform_description STRING comment '客户平台信息',
    other_params STRING comment '扩展字段中数据',
    history STRING comment '历史访问记录'
    ) comment 'EMS-PV测试表'
    PARTITIONED BY(start_time STRING)
    ROW FORMAT DELIMITED
    FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_ods.db/web_chat_text_ems_ods'
    TBLPROPERTIES ('orc.compress'='ZLIB');

    -- 3 构建 DWD层
    -- 3.1 先构建DWD层的数据库:
    CREATE DATABASE IF NOT EXISTS `itcast_dwd`;

    --3.2 在DWD层中创建DWD表:
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    create table if not exists itcast_dwd.visit_consult_dwd(
    session_id STRING comment '七陌sessionId',
    sid STRING comment '访客id',
    create_time bigint comment '会话创建时间',
    seo_source STRING comment '搜索来源',
    ip STRING comment 'IP地址',
    area STRING comment '地域',
    msg_count int comment '客户发送消息数',
    origin_channel STRING COMMENT '来源渠道',
    referrer STRING comment '上级来源页面',
    from_url STRING comment '会话来源页面',
    landing_page_url STRING comment '访客着陆页面',
    url_title STRING comment '咨询页面title',
    platform_description STRING comment '客户平台信息',
    other_params STRING comment '扩展字段中数据',
    history STRING comment '历史访问记录',
    hourinfo string comment '小时'
    )
    comment '访问咨询DWD表'
    partitioned by(yearinfo String, quarterinfo string , monthinfo String, dayinfo string)
    row format delimited fields terminated by ' '
    stored as orc
    location '/user/hive/warehouse/itcast_dwd.db/visit_consult_dwd'
    tblproperties ('orc.compress'='SNAPPY');

    /*
    说明:
    1. 对create_time 切割为 年 季度 月 天 小时
    2. 对 create_time 转换为时间戳(方便后面根据日期计算)
    此处在生产中 有时候也会统一某一种日期格式也是ok的
    */

    --4 构建 DWS层: 二张表
    --4.1: 创建DWS层的数据库
    CREATE DATABASE IF NOT EXISTS `itcast_dws`;

    --4.2: 创建访问量的DWS表:
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;

    CREATE TABLE IF NOT EXISTS itcast_dws.visit_dws (
    sid_total INT COMMENT '根据sid去重求count',
    sessionid_total INT COMMENT '根据sessionid去重求count',
    ip_total INT COMMENT '根据IP去重求count',
    area STRING COMMENT '区域信息',
    seo_source STRING COMMENT '搜索来源',
    origin_channel STRING COMMENT '来源渠道',
    hourinfo STRING COMMENT '创建时间,统计至小时',
    time_str STRING COMMENT '时间明细',
    from_url STRING comment '会话来源页面',
    groupType STRING COMMENT '产品属性类型:1.地区;2.搜索来源;3.来源渠道;4.会话来源页面;5.总访问量',
    time_type STRING COMMENT '时间聚合类型:1、按小时聚合;2、按天聚合;3、按月聚合;4、按季度聚合;5、按年聚合;'
    )
    comment 'EMS访客日志dws表'
    PARTITIONED BY(yearinfo STRING,quarterinfo STRING,monthinfo STRING,dayinfo STRING)
    ROW FORMAT DELIMITED
    FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_dws.db/visit_dws'
    TBLPROPERTIES ('orc.compress'='SNAPPY');

    --4.3: 构建 咨询量的表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;

    CREATE TABLE IF NOT EXISTS itcast_dws.consult_dws (
    sid_total INT COMMENT '根据sid去重求count',
    sessionid_total INT COMMENT '根据sessionid去重求count',
    ip_total INT COMMENT '根据IP去重求count',
    area STRING COMMENT '区域信息',
    origin_channel STRING COMMENT '来源渠道',
    hourinfo STRING COMMENT '创建时间,统计至小时',
    time_str STRING COMMENT '时间明细',
    groupType STRING COMMENT '产品属性类型:1.地区;2.来源渠道',
    time_type STRING COMMENT '时间聚合类型:1、按小时聚合;2、按天聚合;3、按月聚合;4、按季度聚合;5、按年聚合;'
    )
    COMMENT '咨询量DWS宽表'
    PARTITIONED BY (yearinfo string, quarterinfo STRING , monthinfo STRING, dayinfo string)
    ROW FORMAT DELIMITED FIELDS TERMINATED BY ' '
    STORED AS ORC
    LOCATION '/user/hive/warehouse/itcast_dws.db/consult_dws'
    TBLPROPERTIES ('orc.compress'='SNAPPY');

    ---------------------------------------------export_dataBI.sql

    -- 1 建立ODS层库:
    CREATE DATABASE IF NOT EXISTS `itcast_ods`;

    -- 2 在ODS层库中, 构建两张ODS的事实表
    -- 2.1: 构建访问咨询表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    CREATE EXTERNAL TABLE IF NOT EXISTS itcast_ods.web_chat_ems (
    id INT comment '主键',
    create_date_time STRING comment '数据创建时间',
    session_id STRING comment '七陌sessionId',
    sid STRING comment '访客id',
    create_time STRING comment '会话创建时间',
    seo_source STRING comment '搜索来源',
    seo_keywords STRING comment '关键字',
    ip STRING comment 'IP地址',
    area STRING comment '地域',
    country STRING comment '所在国家',
    province STRING comment '省',
    city STRING comment '城市',
    origin_channel STRING comment '投放渠道',
    user_match STRING comment '所属坐席',
    manual_time STRING comment '人工开始时间',
    begin_time STRING comment '坐席领取时间 ',
    end_time STRING comment '会话结束时间',
    last_customer_msg_time_stamp STRING comment '客户最后一条消息的时间',
    last_agent_msg_time_stamp STRING comment '坐席最后一下回复的时间',
    reply_msg_count INT comment '客服回复消息数',
    msg_count INT comment '客户发送消息数',
    browser_name STRING comment '浏览器名称',
    os_info STRING comment '系统名称'
    )comment '访问会话信息表'
    PARTITIONED BY(starts_time STRING) -- 用于指定抽取表时间
    ROW FORMAT DELIMITED FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_ods.db/web_chat_ems_ods'
    TBLPROPERTIES ('orc.compress'='ZLIB');

    -- 2.2 构建 访问咨询表的副表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    CREATE EXTERNAL TABLE IF NOT EXISTS itcast_ods.web_chat_text_ems (
    id INT COMMENT '主键来自MySQL',
    referrer STRING comment '上级来源页面',
    from_url STRING comment '会话来源页面',
    landing_page_url STRING comment '访客着陆页面',
    url_title STRING comment '咨询页面title',
    platform_description STRING comment '客户平台信息',
    other_params STRING comment '扩展字段中数据',
    history STRING comment '历史访问记录'
    ) comment 'EMS-PV测试表'
    PARTITIONED BY(start_time STRING)
    ROW FORMAT DELIMITED
    FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_ods.db/web_chat_text_ems_ods'
    TBLPROPERTIES ('orc.compress'='ZLIB');

    -- 3 构建 DWD层
    -- 3.1 先构建DWD层的数据库:
    CREATE DATABASE IF NOT EXISTS `itcast_dwd`;

    --3.2 在DWD层中创建DWD表:
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;
    create table if not exists itcast_dwd.visit_consult_dwd(
    session_id STRING comment '七陌sessionId',
    sid STRING comment '访客id',
    create_time bigint comment '会话创建时间',
    seo_source STRING comment '搜索来源',
    ip STRING comment 'IP地址',
    area STRING comment '地域',
    msg_count int comment '客户发送消息数',
    origin_channel STRING COMMENT '来源渠道',
    referrer STRING comment '上级来源页面',
    from_url STRING comment '会话来源页面',
    landing_page_url STRING comment '访客着陆页面',
    url_title STRING comment '咨询页面title',
    platform_description STRING comment '客户平台信息',
    other_params STRING comment '扩展字段中数据',
    history STRING comment '历史访问记录',
    hourinfo string comment '小时'
    )
    comment '访问咨询DWD表'
    partitioned by(yearinfo String, quarterinfo string , monthinfo String, dayinfo string)
    row format delimited fields terminated by ' '
    stored as orc
    location '/user/hive/warehouse/itcast_dwd.db/visit_consult_dwd'
    tblproperties ('orc.compress'='SNAPPY');

    /*
    说明:
    1. 对create_time 切割为 年 季度 月 天 小时
    2. 对 create_time 转换为时间戳(方便后面根据日期计算)
    此处在生产中 有时候也会统一某一种日期格式也是ok的
    */

    --4 构建 DWS层: 二张表
    --4.1: 创建DWS层的数据库
    CREATE DATABASE IF NOT EXISTS `itcast_dws`;

    --4.2: 创建访问量的DWS表:
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;

    CREATE TABLE IF NOT EXISTS itcast_dws.visit_dws (
    sid_total INT COMMENT '根据sid去重求count',
    sessionid_total INT COMMENT '根据sessionid去重求count',
    ip_total INT COMMENT '根据IP去重求count',
    area STRING COMMENT '区域信息',
    seo_source STRING COMMENT '搜索来源',
    origin_channel STRING COMMENT '来源渠道',
    hourinfo STRING COMMENT '创建时间,统计至小时',
    time_str STRING COMMENT '时间明细',
    from_url STRING comment '会话来源页面',
    groupType STRING COMMENT '产品属性类型:1.地区;2.搜索来源;3.来源渠道;4.会话来源页面;5.总访问量',
    time_type STRING COMMENT '时间聚合类型:1、按小时聚合;2、按天聚合;3、按月聚合;4、按季度聚合;5、按年聚合;'
    )
    comment 'EMS访客日志dws表'
    PARTITIONED BY(yearinfo STRING,quarterinfo STRING,monthinfo STRING,dayinfo STRING)
    ROW FORMAT DELIMITED
    FIELDS TERMINATED BY ' '
    stored as orc
    location '/user/hive/warehouse/itcast_dws.db/visit_dws'
    TBLPROPERTIES ('orc.compress'='SNAPPY');

    --4.3: 构建 咨询量的表
    --写入时压缩生效 (必须开启压缩生效, 否则后续建表时无法生效压缩)
    set hive.exec.orc.compression.strategy=COMPRESSION;

    CREATE TABLE IF NOT EXISTS itcast_dws.consult_dws (
    sid_total INT COMMENT '根据sid去重求count',
    sessionid_total INT COMMENT '根据sessionid去重求count',
    ip_total INT COMMENT '根据IP去重求count',
    area STRING COMMENT '区域信息',
    origin_channel STRING COMMENT '来源渠道',
    hourinfo STRING COMMENT '创建时间,统计至小时',
    time_str STRING COMMENT '时间明细',
    groupType STRING COMMENT '产品属性类型:1.地区;2.来源渠道',
    time_type STRING COMMENT '时间聚合类型:1、按小时聚合;2、按天聚合;3、按月聚合;4、按季度聚合;5、按年聚合;'
    )
    COMMENT '咨询量DWS宽表'
    PARTITIONED BY (yearinfo string, quarterinfo STRING , monthinfo STRING, dayinfo string)
    ROW FORMAT DELIMITED FIELDS TERMINATED BY ' '
    STORED AS ORC
    LOCATION '/user/hive/warehouse/itcast_dws.db/consult_dws'
    TBLPROPERTIES ('orc.compress'='SNAPPY');

  • 相关阅读:
    poj1661【DP,左右两端dp】
    hdoj1074【A的无比爆炸】
    hdoj1024【DP.最 大 m 字 段 和】(写完我都怕。。。不忍直视。。)
    qq教xixi写模拟加法【非常爆炸】
    错排公式
    POJ3616【基础DP】
    hdoj1257【疑问】(贪心)
    【弱的C艹之路。。未完待续】
    hdoj1728【搜索的两种写法】
    hdoj1001【智障了。。。】
  • 原文地址:https://www.cnblogs.com/shan13936/p/14054179.html
Copyright © 2011-2022 走看看