曹鲁

Size: px
Start display at page:

Download "曹鲁"

Transcription

1 CarbonData Partition 功能介绍 与 上汽集团 CarbonData实践分享 曹 鲁 79

2 关于我 曹 鲁 年毕业于武汉 学计算机学院 曾负责某 融 业公司BI ETL系统开发 某互联 电商 业公司数据仓库 的容量管理 性能调优等 6年加 上汽集团数据业务部 负责 数据平台架构设计与开发 关注 数据技术与开源社区 Mail

3 上汽集团数据业务部 主要负责 规划和实施数据管理体系 建设 数据基础架构和分析平台 拓展和提升集团内企业数据业务能 推动 智能技术在集团业务中的应用 为上汽集团战略转型和创新发展提供支持和服务

4 议题 CarbonData Partition 功能介绍 CarbonData背景 件结构 建索引过程简介 Partition功能将带来的改变 PartitionTable的建表语句 PartitionTable的数据加载过程 PartitionTable的查询过程 Partition 的新增(add) 拆分(split)及删除(drop) 上汽集团的CarbonData实践

5 CarbonData Partition 功能介绍 Apache CarbonData 是 数据平台上 种带索引的列式存储数据格式 6年6月由华为公司贡献 apache基 会 成为apache孵化项目 7年4月正式毕业为apache顶级项目

6 CarbonData Partition 功能介绍 件结构简介 Blocklet: 件内的数据块 Carbon Data File File Header Version Column chunk: Blocklet内的列数据 元数据和索引信息 Header Version Schema Footer Blocklet Offset, Index & statistics Schema Blocklet Page Column Chunk Page Page Column Chunk Column n Chunk Blocklet N File Footer Blocklet Offset, Index & Stats

7 CarbonData Partition 功能介绍 索引 成过程 字典编码 + 排序 MDK => Multi Dimension Key Blocklet (Columnar view) Quarters QTR QTR QTR QTR QTR QTR QTR QTR QTR QTR Months Jan Jan Jan Feb Feb Mar Mar Mar Apr Apr Territor y EMEA APAC EMEA EMEA EMEA APAC EMEA Japan APAC EMEA Countr y Germany China Spain Denmark Italy India UK Japan Australia Germany C C C4 C5 C6 C [,,,,] : [4,4] [,,,,] : [44,446] [,,,,] : [54,547] [,,,,4] : [545,5887] [,,,,5] : [675,568] [,,,,7] : [57,58] Quantity Sales,4 54,7 44,6 58,87 56,8 9,749 5,8 55,45 5,98,5 Encoding Sorted MDK Index C Years Sort (MDK Index) [,,,,] [,,,,] [,,,,] [,,,,4] [,,,,5] [,,,,6] [,,,,7] [,,,,8] [,,4,,9] [,,4,,] : [4,4] : [54,547] : [44,446] : [545,5887] : [675,568] : [5,9749] : [57,58] : [56,5545] : [55,598] : [44,5]

8 CarbonData Partition 功能介绍 索引 成过程 File Footer Blocklet Blocklet Blocklet Blocklet Blocklet Blocklet Index Blocklet Start Key End Key C(Min, Max) C7(Min, Max) Start Key End Key4 Start Key End Key Blocklet4 Start Key4 End Key4 C(Min, Max) C7(Min, Max) Start Key End Key4 Start Key Start Key End Key End Key Start Key End Key Start Key4 End Key4 C(Min,Max) C(Min,Max) C(Min,Max) C(Min,Max) C7(Min,Max) C7(Min,Max) C7(Min,Max) C7(Min,Max)

9 CarbonData Partition 功能介绍 初次性能测试 相对较慢的查询场景 没有排序维度过滤条件的聚合查询 即 法使用Btree索引 有排序维度列作为过滤条件 但聚 合列在MDKey中排序较为靠后的聚 合查询 CarbonData对比Parquet查询性能测试 Dec 6, CarbonData

10 CarbonData Partition 功能介绍 为什么我们要做Partition功能 or Partition功能将带来哪些改变

11 CarbonData Partition 功能介绍 Partition带来的改变 改变 数据将基于Partition列更为集中存储 查询时可过滤掉 量block 减少spark task数量 查询引擎 P P P P4

12 CarbonData Partition 功能介绍 Partition带来的改变 改变 可以使其他列在排序中更靠前 提升查询性能 Col A Col B Col C Col D Col D Col E Col A Col B Col C Col E P P

13 CarbonData Partition 功能介绍 目前支持三种类型Partition Table Hash Partition Range Partition List Partition Range Interval Developing

14 CarbonData Partition 功能介绍 Hash Partition DDL Syntax CREATE TABLE [IF NOT EXISTS] [db_name]table_name [(col_name data_type, )] PARTITIONED BY (partition_col_name data_type) STORED BY 'carbondata' [TBLPROPERTIES ('PARTITION_TYPE'='HASH', 'PARTITION_NUM'='N' )] //N is the number of hash partitions Example create table if not exists hash_partition_table( col_a String, col_b Int, col_c Long, col_d Decimal(,), col_f Timestamp ) partitioned by (col_e Long) stored by 'carbondata' tblproperties('partition_type'='hash','partition_num'='9')

15 CarbonData Partition 功能介绍 Range Partition DDL Syntax CREATE TABLE [IF NOT EXISTS] [db_name]table_name [(col_name data_type, )] PARTITIONED BY (partition_col_name data_type) STORED BY 'carbondata' [TBLPROPERTIES ('PARTITION_TYPE'='RANGE', 'RANGE_INFO'='4--, 5--, 6--' )] Example create table if not exists range_partition_table( col_a String, col_b Int, col_c Long, col_d Decimal(,), RangeInfo 必须为升序 col_e Long ) partitioned by (col_f Timestamp) stored by 'carbondata' tblproperties('partition_type'='range', 'range_info'='5--, 6--, 7--, 7--')

16 CarbonData Partition 功能介绍 List Partition DDL Syntax CREATE TABLE [IF NOT EXISTS] [db_name]table_name [(col_name data_type, )] PARTITIONED BY (partition_col_name data_type) STORED BY 'carbondata' [TBLPROPERTIES ('PARTITION_TYPE'='LIST', 'LIST_INFO'='A, B, C' )] Example create table if not exists list_partition_table( col_b Int, col_c Long, col_d Decimal(,), col_e Long, ListInfo支持One Level Group col_f Timestamp ) partitioned by (col_a String) stored by 'carbondata' tblproperties('partition_type'='list', 'list_info'='aaaa, bbbb, (cccc, dddd), eeee')

17 CarbonData Partition 功能介绍 Show Partition Syntax: SHOW PARTITIONS [db_name]table_name Hash Partition Range Partition partition vin = HASH_NUMBER(5) partition , logdate = DEFAULT, logdate < 4//, 4// <= logdate < 5//, 5// <= logdate < 6// Partition Id List Partition partition , country = DEFAULT, country = China, country = UK, US, country = Japan 7, country = Canada 8, country = Russia 9, country = Fiji 5, country = Korea 6, country = India

18 CarbonData Partition 功能介绍 数据加载过程 Rddpartitionby(partitioner) Shuffle Writer DataNode Reader Writer DataNode Reader Writer DataNode Reader Writer HDFS Scan RDD row => (partitionvalue, row) Load RDD

19 CarbonData Partition 功能介绍 查询过程 根据SQL中的过滤条件=, <=, <, >, >=, in, not in以及表达式右值 确定命中的partitionId Example 某表A以年龄为分区字段 创建range partition table 分区信息为 range_info =,,, 4, 5, 6, 7, 8 SQL过滤条件: age >= and age < 4 得到命中的分区ID为, 4 如果有其他在排过序的维度列有过滤条件 则在driver端根据Btree索引 获取blocklet 所在的 件名 如没有则获取全部 再根据 件名中的 partitionid 筛选得到需要读取的 件 最后再下发spark task进 读取 Partition Id

20 CarbonData Partition 功能介绍 Add Partition Syntax ALTER TABLE [db_name]table_name ADD PARTITION('new_partition') Process 修改PartitionInfo 读取默认分区 PartitionId为 数据并根据新的 PartitionInfo重新导 数据 删除旧的默认分区数据 件 N Max N Max Max

21 CarbonData Partition 功能介绍 Split Partition Syntax ALTER TABLE [db_name]table_name SPLIT PARTITION(partition_id) INTO('new_partition', 'new_partition') Process 修改PartitionInfo Note 不能Split 分区 默认分区 6

22 CarbonData Partition 功能介绍 Split Partition Process 读取目标分区数据并根据新的PartitionInfo重新导 数据 RangePartition A C ListPartition D [A, B) => [A, C), [C, D), [D, B) 删除旧分区数据 件 B

23 CarbonData Partition 功能介绍 Drop Partition Syntax //Drop partition definition only and keep data ALTER TABLE [db_name]table_name DROP PARTITION(partition_id) //Drop both partition definition and data ALTER TABLE [db_name]table_name DROP PARTITION(partition_id) WITH DATA Process 修改PartitionInfo

24 CarbonData Partition 功能介绍 Drop Partition Process a Drop Partition 但保留数据 RangePartition Drop最后 个partition 数据merge到default partiton Drop非最后partition 数据merge到 next partition

25 CarbonData Partition 功能介绍 Drop Partition Process a Drop Partition 但保留数据 ListPartition 数据merge到default partiton 6 b Drop Partition 不保留数据

26 上汽集团CarbonData实践分享 集群环境 台Spark client server 6台DataNode server 启用资源 测试数据样本 spark-shell --master yarn --deploy-mode client --num-executors 6 --driver-memory g --executor-memory 5g --executor-cores 5 荣威RX5 7年月日~月日数据 每天~5亿条 9~G 天共9亿条 约667G

27 上汽集团CarbonData实践分享 建表语句 CREATE TABLE IF NOT EXISTS rx5_carbon_partition_test( Id string, create_time timestamp, Field_C Int, Field_D String, 共5个字段 其中绝 部分为维度 Field_XX ) PARTITIONED BY (create_time_hour int) STORED BY 'carbondata' TBLPROPERTIES('PARTITION_TYPE' = 'RANGE', 'RANGE_INFO' = ',,, 4, 5, 6, 7, 8, 9,,,,, 4, 5, 6, 7, 8, 9,,,,, 4', 'SORT_COLUMNS' = 'Id, Field_C, Field_D ')

28 上汽集团CarbonData实践分享 Load时间对比 Partition(mins) Non-Partition(mins)

29 上汽集团CarbonData实践分享 性能测试Case 排序维度列作为过滤条件 有partition列上的范围过滤条件的聚合查询 select Date(create_time), count(distinct ID) from defaultrx5_carbon_partition_test where create_time_hour >= 7 and create_time_hour < group by Date(create_time) 法应用索引 或在索引中排序位置较为靠后 sql 578 sql Carbon partition Carbon non-partition Carbon partition Carbon non-partition 查询时间对比 Spark Task数对比

30 上汽集团CarbonData实践分享 性能测试Case 有维度列作为过滤条件 有Partition列过滤条件的聚合查询 select Date(create_time), count(*) from defaultrx5_carbon_partition_test where create_time_hour >= 7 and create_time_hour < and id = XXXX group by Date(create_time) sql sql Carbon partition Carbon non-partition Carbon partition 查询时间对比 Carbon non-partition Spark Task数对比

31 上汽集团CarbonData实践分享 性能测试Case 没有过滤条件的聚合查询 性能测试Case4 没有过滤条件的聚合查询 聚合列为partition列 select Date(create_time), count(*) from defaultrx5_carbon_partition_test group by Date(create_time) select create_time_hour, count(*) from defaultrx5_carbon_partition_test group by create_time_hour select Date(create_time), count(*) from defaultrx5_carbon_nonpartition_test group by Date(create_time) select hour(create_time), count(*) from defaultrx5_carbon_nonpartition_test group by hour(create_time) Carbon partition Carbon non-partition sql sql4 查询时间对比 Carbon partition Carbon non-partition sql sql4 Spark Task数对比

32 上汽集团CarbonData实践分享 性能测试5:明细数据查询 select * from defaultrx5_carbon_partition_test where create_time_hour>= 7 and create_time_hour < and id= XXX78979' and date(create_time) = '7--4' 明细数据查询 sql5 Carbon partition Carbon non-partition

33 CarbonData Partition的性能调优 选择最合适的Partition列 结合业务 了解哪些列会作为常用的过滤条件 结合数据 可粗略统计 下数据分布情况 避免选择 数据倾斜严重的列 如有多种选择 可再结合数据加载效率考虑 尽可能的使用Partition列作为过滤条件 例如Partition列为A 你根据业务需求在Column B上有筛选 条件 但你注意到A与B列之间存在某种固定的mapping关 系 这时就可以根据B列的过滤条件再新增 个partition列 的过滤条件 以提 查询效率

34 CarbonData PartitionTODO List 4 Range Interval Partition Value-Based Partition Alter Table Merge Partition Optimization for join between partition tables

35 谢谢 扫描 维码获取 上汽集团数据业务部开放职位 欢迎加 Apache CarbonData社区: 发邮件 邮件组 关于使用CarbonData过程中遇到任何问题均可发邮件 官

PowerPoint 演示文稿

PowerPoint 演示文稿 Hadoop 生 态 技 术 在 阿 里 全 网 商 品 搜 索 实 战 阿 里 巴 巴 - 王 峰 自 我 介 绍 真 名 : 王 峰 淘 宝 花 名 : 莫 问 微 博 : 淘 莫 问 2006 年 硕 士 毕 业 后 加 入 阿 里 巴 巴 集 团 淘 及 搜 索 事 业 部 ( 高 级 技 术 与 家 ) 目 前 负 责 搜 索 离 线 系 统 团 队 技 术 方 向 : 分 布 式 计 算

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

Apache CarbonData集群模式使用指南

Apache CarbonData集群模式使用指南 我们在 Apache CarbonData 快速入门编程指南 文章中介绍了如何快速使用 Apache CarbonData, 为了简单起见, 我们展示了如何在单机模式下使用 Apache CarbonData 但是生产环境下一般都是使用集群模式, 本文主要介绍如何在集群模式下使用 Apache CarbonData 启动 Spark shell 这里以 Spark shell 模式进行介绍,master

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Apache Spark 与 多 数 据 源 的 结 合 田 毅 @ 目 录 为 什 么 会 用 到 多 个 数 据 源 Spark 的 多 数 据 源 方 案 有 哪 些 已 有 的 数 据 源 支 持 Spark 在 GrowingIO 的 实 践 分 享 为 什 么 会 用 到 多 个 数 据 源 从 数 据 本 身 来 看 大 数 据 的 特 性 之 一 :Variety 数 据 的 多 样

More information

學 科 100% ( 為 單 複 選 題, 每 題 2.5 分, 共 100 分 ) 1. 請 參 閱 附 圖 作 答 : (A) 選 項 A (B) 選 項 B (C) 選 項 C (D) 選 項 D Ans:D 2. 下 列 對 於 資 料 庫 正 規 化 (Normalization) 的 敘

學 科 100% ( 為 單 複 選 題, 每 題 2.5 分, 共 100 分 ) 1. 請 參 閱 附 圖 作 答 : (A) 選 項 A (B) 選 項 B (C) 選 項 C (D) 選 項 D Ans:D 2. 下 列 對 於 資 料 庫 正 規 化 (Normalization) 的 敘 ITE 資 訊 專 業 人 員 鑑 定 資 料 庫 系 統 開 發 與 設 計 實 務 試 卷 編 號 :IDS101 注 意 事 項 一 本 測 驗 為 單 面 印 刷 試 題, 共 計 十 三 頁 第 二 至 十 三 頁 為 四 十 道 學 科 試 題, 測 驗 時 間 90 分 鐘 : 每 題 2.5 分, 總 測 驗 時 間 為 90 分 鐘 二 執 行 CSF 測 驗 系 統 -Client

More information

台達化學工業股份有限公司九十年股東常會開會程序

台達化學工業股份有限公司九十年股東常會開會程序 股 票 代 碼 :1308 亞 洲 聚 合 股 份 有 限 公 司 一 五 年 股 東 常 會 議 事 手 冊 日 期 : 一 五 年 六 月 八 日 地 點 : 高 雄 市 鳥 松 區 圓 山 路 2 號 高 雄 圓 山 大 飯 店 5 樓 柏 壽 廳 目 錄 開 會 程 序 2 開 會 議 程 3 討 論 事 項 ( 一 ) 4 報 告 事 項 10 承 認 及 討 論 事 項 ( 二 ) 31

More information

untitled

untitled Database System Principle Database System Principle 1 SQL 3.1 SQL 3.2-3.3 3.4 3.5 3.6 Database System Principle 2 3.1 SQL SQL Structured Query Language SQL Database System Principle 3 SQL 3.1.1 SQL 3.1.2

More information

Jacky Li / 李昆 Huawei BigData Platform Engineer Apache CarbonData PMC & Committer Previous experience: L3/L4/L7 Network, Protocol, Security Telecom Val

Jacky Li / 李昆 Huawei BigData Platform Engineer Apache CarbonData PMC & Committer Previous experience: L3/L4/L7 Network, Protocol, Security Telecom Val CarbonData: 面向交互式分析的索引文件格式 Jacky Li / 李昆 Huawei BigData Platform Engineer Apache CarbonData PMC & Committer Previous experience: L3/L4/L7 Network, Protocol, Security Telecom Value Added Service Platform

More information

Partition Key: 字 符 串 类 型, 表 示 当 前 Entity 的 分 区 信 息 这 个 Property 对 于 Table Service 自 动 纵 向 和 横 向 扩 展 至 关 重 要 Row Key: 字 符 串 类 型, 在 给 定 Partition Key 的

Partition Key: 字 符 串 类 型, 表 示 当 前 Entity 的 分 区 信 息 这 个 Property 对 于 Table Service 自 动 纵 向 和 横 向 扩 展 至 关 重 要 Row Key: 字 符 串 类 型, 在 给 定 Partition Key 的 4.2 使 用 Table Service Table Service 相 对 来 说 是 三 个 Storage Service 中 最 好 理 解 和 最 易 于 接 受 的, 它 主 要 用 来 存 储 结 构 化 数 据 但 是 Table Service 却 并 不 是 一 个 关 系 型 数 据 库 Table Service 由 两 个 部 分 组 成 :Table 和 Entity

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

目 錄

目      錄 1234 108 6 24 178 () ... 1... 2... 3... 4... 5... 6... 9... 12... 13... 14... 18... 39 26... 40... 43... 46... 73... 81... 85... 94... 96 108 6 249 178 ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) 26 ( ) ( ) ( ) (

More information

季刊9web.indd

季刊9web.indd 在 全 国 现 场 会 上 成 功 展 示 全 国 烟 叶 收 购 暨 现 代 烟 草 农 业 建 设 现 场 会 7 月 6 日 至 8 日 在 昆 明 召 开 在 国 家 局 的 领 导 下, 由 我 司 技 术 开 发 的 烟 站 ( 单 元 ) 烟 叶 管 理 信 息 系 统 在 现 场 会 上 成 功 展 示, 并 得 到 参 会 领 导 及 代 表 们 的 关 注 与 认 可 该 系 统

More information

ebook 132-2

ebook 132-2 2 SQL Server 7.0 SQL Server SQL Server 7 SQL Server 7 5 2.1 SQL Server 7 SQL Server 7 SQL Server SQL Server SQL Server 2.1.1 SQL Server Windows NT/2000 Windows 95/98 ( r a n d o m access memory R A M )

More information

ebook 96-16

ebook 96-16 16 13 / ( ) 16-1 SQL*Net/Net8 SQL*Net/Net8 SQL*Net/Net8 16-1 / S Q L SQL*Net V2 N e t 8 S Q L * N e t N e t ( ) 16.1 S Q L O r a c l e S Q L 16 401 ) ( H R _ L I N K create database link p u b l i c (

More information

一 30 Latest Global Internet Statistical Information (Vol. 30) CNNIC 2007 09 (September, 2007) (Table of Contents) GLOBAL INTERNET DEVELOPMENT... 2 1 The Total Number of Hostnames in the World...2 2 Top Ten

More information

支付宝2011年 IT资产与费用预算

支付宝2011年 IT资产与费用预算 OceanBase 支 持 ACID 的 可 扩 展 关 系 数 据 库 qushan@alipay.com 2013 年 04 月 关 系 数 据 库 发 展 1970-72:E.F.Codd 数 据 库 关 系 模 式 20 世 纨 80 年 代 第 一 个 商 业 数 据 库 Oracle V2 SQL 成 为 数 据 库 行 业 标 准 可 扩 展 性 Mainframe: 小 型 机 =>

More information

untitled

untitled 1 2 3 4 5 A 800 700 600 500 400 300 200 100 0-100 10000 9500 9000 8500 8000 7500 7000 6500 6000 2006.1-2007.5 A 1986.1-1991.12 6 7 6 27 WIND A 52.67 2007 44 8 60 55 50 45 40 35 30 25 20 15 10 2001-05 2002-02

More information

习题1

习题1 习 题 1 数 据 库 系 统 基 本 概 念 1.1 名 词 解 释 DB DB 是 长 期 存 储 在 计 算 机 内 有 组 织 的 统 一 管 理 的 相 关 数 据 的 集 合 DB 能 为 各 种 用 户 共 享, 具 有 较 小 冗 余 度 数 据 间 联 系 紧 密 而 又 有 较 高 的 数 据 独 立 性 等 特 点 DBMS 是 位 于 用 户 与 操 作 系 统 之 间 的

More information

TABELLA N

TABELLA N DATI SUL COMMERCIO CINESE E ITALO-CINESE -Aprile 2016-03/06/2016 Beijing Office Room 3802, JingGuang Center Hu Jia Lou, Chaoyang District 100020 Beijing T: +86 10 65973797 F: +86 10 65973092 E: pechino@ice.it

More information

一 29 Latest Global Internet Statistical Information (Vol. 29) CNNIC 2007 07 ( July, 2007) (Table of Contents) GLOBAL INTERNET DEVELOPMENT... 2 1 The Total Number of Internet Users in the World...2 2 The

More information

发展党员材料填写参考(上网).doc

发展党员材料填写参考(上网).doc 华 中 科 技 大 学 党 员 发 展 材 料 填 写 参 考 中 共 华 中 科 技 大 学 委 员 会 组 织 部 2010 年 3 月 31 日 目 录 1 党 员 发 展 材 料 一 览 表... 1 2 入 党 志 愿 书 填 写 参 考... 2 3 申 请 入 党 积 极 分 子 培 养 考 察 登 记 表 填 写 参 考... 13 4 华 中 科 技 大 学 发 展 党 员 综 合

More information

TABELLA N

TABELLA N DATI SUL COMMERCIO CINESE E ITALO-CINESE -Maggio 2016-01/07/2016 Beijing Office Room 3802, JingGuang Center Hu Jia Lou, Chaoyang District 100020 Beijing T: +86 10 65973797 F: +86 10 65973092 E: pechino@ice.it

More information

目錄

目錄 資 訊 素 養 線 上 教 材 單 元 五 資 料 庫 概 論 及 Access 5.1 資 料 庫 概 論 5.1.1 為 什 麼 需 要 資 料 庫? 日 常 生 活 裡 我 們 常 常 需 要 記 錄 一 些 事 物, 以 便 有 朝 一 日 所 記 錄 的 事 物 能 夠 派 得 上 用 場 我 們 能 藉 由 記 錄 每 天 的 生 活 開 銷, 就 可 以 在 每 個 月 的 月 底 知

More information

PowerPoint Presentation

PowerPoint Presentation 数 据 库 培 训 项 目 研 究 Oracle 索 引 探 究 B*tree 索 引 与 位 图 索 引 的 特 点 作 者 : 赵 超 2008 年 12 月 18 日 实 验 环 境 Windows-server2003 内 存 :2G Oracle 10.2.0 ORACLE_SID=orcl 索 引 类 型 B*tree 索 引 ( 默 认 方 式 ) 位 图 索 引 (bitmap) 反

More information

ebook46-23

ebook46-23 23 Access 2000 S Q L A c c e s s S Q L S Q L S Q L S E L E C T S Q L S Q L A c c e s s S Q L S Q L I N A N S I Jet SQL S Q L S Q L 23.1 Access 2000 SQL S Q L A c c e s s Jet SQL S Q L U N I O N V B A S

More information

untitled

untitled http://idc.hust.edu.cn/~rxli/ 1.1 1.2 1.3 1.4 1.5 1.6 2 1.1 1.1.1 1.1.2 1.1.3 3 1.1.1 Data (0005794, 601,, 1, 1948.03.26, 01) (,,,,,) 4 1.1.1 Database DB 5 1.1.1 (DBMS) DDL ( Create, Drop, Alter) DML(

More information

未命名

未命名 附录三 ADS- MySQL 基础语法偏表 类别语法偏类 MySQL 语法 ADS 语法备注 型 Utility DESCRIBE {DESCRIBE DESC} tbl_name [col_name wild] {DESCRIBE DESC} dbname.tbl_name EXPLAIN 负偏 {EXPLAIN} [explain_type] explainable_stmt {EXPLAIN}

More information

<4D6963726F736F667420576F7264202D20303830313233BCF2C6C0A1AACAD0B3A1B2DFC2D45FB9C9CAD0B1A9B5F82E646F63>

<4D6963726F736F667420576F7264202D20303830313233BCF2C6C0A1AACAD0B3A1B2DFC2D45FB9C9CAD0B1A9B5F82E646F63> 中 国 : 市 场 策 略 关 注 经 济 走 势 和 政 策 应 对 中 金 公 司 研 究 部 分 析 员 : 高 挺 郦 彬 Email: gaoting@cicc.com.cn; libin@cicc.com.cn 2008 年 1 月 23 日 事 件 : 自 1 月 15 日 以 来, 短 短 6 个 交 易 日,A 股 市 场 经 历 大 幅 调 整, 上 证 指 数 从 5500 点

More information

ABOUT ME AGENDA 唐建法 / TJ MongoDB 高级方案架构师 MongoDB 中文社区联合发起人 Spark 介绍 Spark 和 MongoDB 案例演示

ABOUT ME AGENDA 唐建法 / TJ MongoDB 高级方案架构师 MongoDB 中文社区联合发起人 Spark 介绍 Spark 和 MongoDB 案例演示 完整的大数据解決方案 ABOUT ME AGENDA 唐建法 / TJ MongoDB 高级方案架构师 MongoDB 中文社区联合发起人 Spark 介绍 Spark 和 MongoDB 案例演示 Dataframe Pig YARN Spark Stand Alone HDFS Spark Stand Alone Mesos Mesos Spark Streaming Hive Hadoop

More information

四川省普通高等学校

四川省普通高等学校 四 川 省 普 通 高 等 学 校 计 算 机 应 用 知 识 和 能 力 等 级 考 试 考 试 大 纲 (2013 年 试 行 版 ) 四 川 省 教 育 厅 计 算 机 等 级 考 试 中 心 2013 年 1 月 目 录 一 级 考 试 大 纲 1 二 级 考 试 大 纲 6 程 序 设 计 公 共 基 础 知 识 6 BASIC 语 言 程 序 设 计 (Visual Basic) 9

More information

3.1 SQL Server 2005 Analysis Services Unified Dimension Model (UDM) 3 ( Ad-Hoc) SQL Server 2005 E - R T-SQL(Star Schema) (Data Mart) (ETL) ( Ora

3.1 SQL Server 2005 Analysis Services Unified Dimension Model (UDM) 3 ( Ad-Hoc) SQL Server 2005 E - R T-SQL(Star Schema) (Data Mart) (ETL) ( Ora C H A P T E R 3 SQL Server 2005 SQL Server 2000SQL Server SQL Server 20052005 3.1 SQL Server 2005 Analysis Services 3.1.1 Unified Dimension Model (UDM) 3 ( Ad-Hoc) SQL Server 2005 E - R T-SQL(Star Schema)

More information

261225 0 . 1 . () 2 100 LP 100 100 100 1 40 3 22 23 35 87% 2 83 7 30% 1 2% 0 1% 2 7% 2 4% 2 9% 2 7% 3 7% 0 10 11 51% 19 81% 0 1% 2 9% LP 100% 45 5 11 11 23 100% 43 14 34% 2 5% 2 5% 9 22% 7 17% 100% 20

More information

01 SQL Server SQL Server 2008 SQL Server 6-1 SSIS SQL Server ( master ) ( msdb ) SQL Server ( master ) master 6-1 DTS sysadmin 6-1 sysa

01 SQL Server SQL Server 2008 SQL Server 6-1 SSIS SQL Server ( master ) ( msdb ) SQL Server ( master ) master 6-1 DTS sysadmin 6-1 sysa 6 01 SQL Server SQL Server 2008 SQL Server 6-1 SSIS 6-1 06 228 6-1 SQL Server ( master ) ( msdb ) SQL Server ( master ) master 6-1 DTS sysadmin 6-1 sysadmin 6-1 SQL Server 2008 SSIS SQL Server (dbo) master

More information

third in 20 years. The student population will be in the range of million before Keywords education age population family planning

third in 20 years. The student population will be in the range of million before Keywords education age population family planning 2017 6 225 POPULATION & ECONOMICS No. 6 2017 Tot. No. 225 100028 1982 2015 12849. 16 2035 9114. 74 2015 3700 1 /3 2020 2015 2020 3000 4000 C921 G465 DOI 10. 3969 /j. issn. 1000-4149. 2017. 06. 008 A 1000-4149

More information

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S 一 個 SQL Injection 實 例 的 啟 示 頁 1 / 6 你 的 網 站 在 裸 奔 嗎? 一 個 SQL Injection 實 例 的 啟 示 作 者 : 李 明 儒 SQL Injection( 資 料 隱 碼 攻 擊 ) 問 題 早 就 不 是 什 麼 新 聞, 但 前 陣 子 在 一 個 頗 具 知 名 度 的 活 動 網 站 上, 赫 然 發 現 它 大 刺 刺 地 現 身!

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

数 据 库 系 统 基 础 2/54 第 6 章 数 据 库 管 理 与 维 护

数 据 库 系 统 基 础 2/54 第 6 章 数 据 库 管 理 与 维 护 数 据 库 系 统 基 础 1/54 数 据 库 系 统 基 础 哈 尔 滨 工 业 大 学 2011.~2012. 数 据 库 系 统 基 础 2/54 第 6 章 数 据 库 管 理 与 维 护 数 据 库 系 统 基 础 3/54 第 6 章 数 据 库 管 理 与 维 护 6.1 数 据 库 管 理 员 的 基 本 职 责 6.2 数 据 库 存 储 与 性 能 管 理 6.3 数 据 库

More information

ebook 165-5

ebook 165-5 3 5 6 7 8 9 [ 3. 3 ] 3. 3 S Q L S Q 4. 21 S Q L S Q L 4 S Q 5 5.1 3 ( ) 78 5-1 3-8 - r e l a t i o n t u p l e c a r d i n a l i t y a t t r i b u t e d e g r e e d o m a i n primary key 5-1 3 5-1 S #

More information

Microsoft Word - 104年股東常會議事錄_1040609_.doc

Microsoft Word - 104年股東常會議事錄_1040609_.doc 協 易 機 械 工 業 股 份 有 限 公 司 一 四 年 股 東 常 會 議 事 錄 時 間 : 中 華 民 國 一 四 年 六 月 九 日 ( 星 期 二 ) 上 午 九 時 整 地 點 : 桃 園 市 桃 園 區 縣 府 路 332 號 11 樓 ( 桃 園 市 工 業 會 十 一 樓 會 議 室 ) 出 席 股 數 : 出 席 股 東 及 股 東 代 理 人 所 代 表 之 股 數 計 99,275,599

More information

(Microsoft PowerPoint - 2011 [L So] \272C\251\312\252\375\266\353\251\312\252\315\257f [\254\333\256e\274\322\246\241])

(Microsoft PowerPoint - 2011 [L So] \272C\251\312\252\375\266\353\251\312\252\315\257f [\254\333\256e\274\322\246\241]) 慢 性 阻 塞 性 肺 病 (COPD) 冬 令 殺 手 冬 令 殺 手 蘇 潔 瑩 醫 生 東 區 尤 德 夫 人 那 打 素 醫 院 內 科 部 呼 吸 科 副 顧 問 醫 生 慢 性 阻 塞 性 肺 病 (COPD) 慢 性 阻 塞 性 肺 病 簡 稱 慢 阻 肺 病, 主 要 包 括 慢 性 支 氣 管 炎 和 肺 氣 腫 兩 種 情 況 患 者 的 呼 吸 道 受 阻, 以 致 氣 流 不

More information

Microsoft Word - 43屆2011年國際化奧總報告 revised by FTS.doc

Microsoft Word - 43屆2011年國際化奧總報告 revised by FTS.doc 台 灣 ( 中 華 台 北 ) 4 名 高 中 學 生 贏 得 2011 年 土 耳 其 43 屆 國 際 化 奧 自 由 與 民 主 超 級 生 命 雙 螺 旋 (A-T)(C-G) 配 對 的 美 譽 國 際 化 學 奧 林 匹 亞 競 賽 計 畫 主 持 人 兼 代 表 團 團 長 摘 要 第 43 屆 2011 年 國 際 化 學 奧 林 匹 亞 競 賽 七 月 17 日 下 午 3 時 於

More information

untitled

untitled -JAVA 1. Java IDC 20 20% 5 2005 42.5 JAVA IDC JAVA 60% 70% JAVA 3 5 10 JAVA JAVA JAVA J2EE J2SE J2ME 70% JAVA JAVA 20 1 51 2. JAVA SUN JAVA J2EE J2EE 3. 1. CSTP CSTP 2 51 2. 3. CSTP IT CSTP IT IT CSTP

More information

宏观与策略研究

宏观与策略研究 --2005 6 2 2005 6 A 86-0755-82943202 zhaojx@ccs.com.cn 86-0755-82960074 huangsx@ccs.com.cn 86-0755-82943566 luxw@ccs.com.cn 86-0755-82960739 jingzz@ccs.com.cn 2005-6-2 1996 2005 A 4 5 6 6 A+H 2005 A, 2005-4-6

More information

DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( ) SQL ( ) DB2 SQL DB2 DB2 SQL DB2 DB2 SQL DB2 ( DB2 ) DB2 DB2 DB2 SQL DB2 (1) SQL (2) S

DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( ) SQL ( ) DB2 SQL DB2 DB2 SQL DB2 DB2 SQL DB2 ( DB2 ) DB2 DB2 DB2 SQL DB2 (1) SQL (2) S 9 DB2 优化器 DB2 SQL select c1 c2 from ( DB2 )??? DB2?!?, no no DB2 I/O ( transrate overhead ) SQL DML (INSERT UPDATE DELETE) DB2 (access plan) DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( 728 747 ) SQL

More information

RUN_PC連載_12_.doc

RUN_PC連載_12_.doc PowerBuilder 8 (12) PowerBuilder 8.0 PowerBuilder PowerBuilder 8 PowerBuilder 8 / IDE PowerBuilder PowerBuilder 8.0 PowerBuilder PowerBuilder PowerBuilder PowerBuilder 8.0 PowerBuilder 6 PowerBuilder 7

More information

数据分析技术介绍

数据分析技术介绍 DW OLAP DM ,,, :, DW OLAP DM DW OLAP DM DW OLAP DM 80 " "William H.Inmon Data mart " " Meta Data ( ) ETL ETL Extract Transform Cleansing Load ETL Oracle Oracle (CWM) (OEM) 9i Application Server 9i

More information

PowerPoint Presentation

PowerPoint Presentation 推 票 蕴 含 的 投 资 机 会 卖 方 分 析 师 重 点 报 告 效 应 研 究 证 券 分 析 师 刘 均 伟 A0230511040041 夏 祥 全 A0230513070002 2014.4 主 要 内 容 1. 卖 方 分 析 师 推 票 的 时 滞 性 蕴 含 了 事 件 投 资 机 会 2. 卖 方 分 析 师 重 点 报 告 首 次 效 应 3. 卖 方 分 析 师 重 点 报

More information

通过Hive将数据写入到ElasticSearch

通过Hive将数据写入到ElasticSearch 我在 使用 Hive 读取 ElasticSearch 中的数据 文章中介绍了如何使用 Hive 读取 ElasticSearch 中的数据, 本文将接着上文继续介绍如何使用 Hive 将数据写入到 ElasticSearch 中 在使用前同样需要加入 elasticsearch-hadoop-2.3.4.jar 依赖, 具体请参见前文介绍 我们先在 Hive 里面建个名为 iteblog 的表,

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

基于ECO的UML模型驱动的数据库应用开发1.doc

基于ECO的UML模型驱动的数据库应用开发1.doc ECO UML () Object RDBMS Mapping.Net Framework Java C# RAD DataSetOleDbConnection DataGrod RAD Client/Server RAD RAD DataReader["Spell"].ToString() AObj.XXX bug sql UML OR Mapping RAD Lazy load round trip

More information

标准化党支部建设

标准化党支部建设 后 勤 集 团 党 总 支 标 准 化 党 支 部 建 设 工 作 手 册 后 勤 集 团 党 总 支 办 公 室 编 二 〇 一 五 年 四 月 2 前 言 党 支 部 是 党 的 组 织 中 最 基 层 的 组 织 形 式, 是 党 的 全 部 工 作 和 战 斗 力 的 基 础 为 使 党 的 基 层 组 织 工 作 进 一 步 规 范 化 制 度 化 标 准 化, 不 断 增 强 党 支 部

More information

Microsoft Word - 永信103Q4(Final)

Microsoft Word - 永信103Q4(Final) 股 票 代 碼 :5508 永 信 建 設 開 發 股 份 有 限 公 司 財 務 報 告 暨 會 計 師 查 核 報 告 民 國 103 及 102 年 度 地 址 : 高 雄 市 新 興 區 六 合 路 183 號 12 樓 電 話 : (07)222-9460 - 1 - 目 錄 財 務 報 告 項 目 頁 次 附 註 編 號 一 封 面 1 - 二 目 錄 2 - 三 會 計 師 查 核 報

More information

1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2

1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2 CHAPTER 1 Understanding Core Database Concepts 1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2 1 Understanding Core Database Concepts

More information

DPark MapReduce (Davies) davies@douban.com 2011/12/07 Velocity China 2011 Douban Douban 5500 Douban 5500 1000G, Douban 5500 1000G, 60+ Douban 5500 1000G, 60+ 200+ Douban 5500 1000G, 60+ 200+ > MooseFS

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

PowerPoint Presentation

PowerPoint Presentation Skill-building Courses Intro to SQL Lesson 2 More Functions in SQL 通配符 :LIKE SELECT * FROM Products WHERE PName LIKE %gizmo% PName Price Category Manufacturer Gizmo $19.99 Gadgets GizmoWorks Powergizmo

More information

IBM Rational ClearQuest Client for Eclipse 1/ IBM Rational ClearQuest Client for Ecl

IBM Rational ClearQuest Client for Eclipse   1/ IBM Rational ClearQuest Client for Ecl 1/39 Balaji Krish,, IBM Nam LeIBM 2005 4 15 IBM Rational ClearQuest ClearQuest Eclipse Rational ClearQuest / Eclipse Clien Rational ClearQuest Rational ClearQuest Windows Web Rational ClearQuest Client

More information

目 录 1 新 闻 政 策 追 踪... 4 1.1 住 建 部 : 坚 持 因 城 施 策 完 善 房 地 产 宏 观 调 控... 4 2 行 业 数 据 追 踪... 4 2.1 限 购 政 策 落 地, 新 房 成 交 回 落... 4 2.2 库 存 微 降, 一 线 去 化 表 现 稍

目 录 1 新 闻 政 策 追 踪... 4 1.1 住 建 部 : 坚 持 因 城 施 策 完 善 房 地 产 宏 观 调 控... 4 2 行 业 数 据 追 踪... 4 2.1 限 购 政 策 落 地, 新 房 成 交 回 落... 4 2.2 库 存 微 降, 一 线 去 化 表 现 稍 Sep/15 Oct/15 Nov/15 Dec/15 Jan/16 Feb/16 Mar/16 Apr/16 May/16 Jun/16 Jul/16 Aug/16 房 地 产 行 业 行 业 研 究 - 行 业 周 报 行 业 评 级 : 增 持 报 告 日 期 :216-9-14 4% 3% 2% 1% % -1% -2% 沪 深 3 SW 房 地 产 研 究 员 : 宫 模 恒 551-65161836

More information

2-2

2-2 ... 2-1... 2-2... 2-6... 2-9... 2-12... 2-13 2005 1000 2006 20083 2006 2006 2-1 2-2 2005 2006 IMF 2005 5.1% 4.3% 2006 2005 3.4% 0.2% 2006 2005 911 2005 2006 2-3 2006 2006 8.5% 1.7 1.6 1.2-0.3 8.3 4.3 3.2

More information

2 图 1 新 民 科 技 2010 年 主 营 业 务 收 入 结 构 图 2 新 民 科 技 2010 年 主 营 业 务 毛 利 结 构 印 染 加 工 10.8% 其 他 4.8% 丝 织 品 17.2% 印 染 加 工 7.8% 其 他 4.4% 丝 织 品 19.1% 涤 纶 长 丝 6

2 图 1 新 民 科 技 2010 年 主 营 业 务 收 入 结 构 图 2 新 民 科 技 2010 年 主 营 业 务 毛 利 结 构 印 染 加 工 10.8% 其 他 4.8% 丝 织 品 17.2% 印 染 加 工 7.8% 其 他 4.4% 丝 织 品 19.1% 涤 纶 长 丝 6 买 入 维 持 上 市 公 司 年 报 点 评 新 民 科 技 (002127) 证 券 研 究 报 告 化 工 - 基 础 化 工 材 料 与 制 品 2011 年 3 月 15 日 2010 年 业 绩 符 合 预 期, 增 发 项 目 投 产 在 即 基 础 化 工 行 业 分 析 师 : 曹 小 飞 SAC 执 业 证 书 编 号 :S08500210070006 caoxf@htsec.com

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

More information

プリント

プリント For Higher Customer Satisfaction, We Bridge the SAS System Between Customer s World. YourModelsBuild up Your NextAnalytics 02 Y β0 β1x1 β2x2 ε Y ~ μ σ 2 μ β0 β1x1 β2x2 Y ~ n p logit(p) β0 β1x1 β2x2 logit(p)logit(p)=log(p/(1-p))

More information

使用SQL Developer

使用SQL Developer 使 用 SQL Developer 达 成 的 目 标 / 方 案 1 创 建 一 个 新 的 数 据 库 连 接 ; 2 在 SQL Developer 中 查 看 数 据 库 对 象 的 信 息 修 改 数 据 ; 3 在 SQL Developer 中 创 建 表 ; 4 在 SQL Developer 中 创 建 索 引 ; 5 在 SQL Developer 中 创 建 函 数 ; 6 在

More information

Oracle9i 的查询优化

Oracle9i 的查询优化 Oracle9i Oracle 2002 2 Oracle9i...4...4...4 Oracle?...4 SQL...5...6...6...6...7...8...9...9 CUBE...10...11...11...11 OR...12...12...14...14...15...15...16...16...18...18...18...19...19...19...20...20 OLAP...20...21...21

More information

页码,1/6 Pegasus Parts Lists: If you have any questions or need assistance in finding a part, please just drop us a note through our Contact Us page and our experienced sales staff will assist you. Pegasus

More information

投资高企 把握3G投资主题

投资高企 把握3G投资主题 行 业 研 究 东 兴 证 券 股 份 有 限 公 司 证 券 研 究 报 告 维 持 推 荐 白 酒 行 业 食 品 饮 料 行 业 2016 年 第 21 周 周 报 投 资 摘 要 : 上 周 市 场 表 现 和 下 周 投 资 策 略 上 周 食 品 饮 料 行 业 指 数 下 跌 0.89%, 跑 输 沪 深 300 指 数 1 个 百 分 点 食 品 饮 料 细 分 行 业 1 个 上

More information

行政法講義—第壹篇「緒論」

行政法講義—第壹篇「緒論」 第 四 章 中 國 科 技 發 展 史 第 四 章 中 國 科 技 發 展 史 中 國 古 代 科 學 技 術 在 世 界 科 技 發 展 史 上 有 其 重 要 歷 史 地 位 它 的 發 展 從 遠 古 時 代 原 始 積 累, 春 秋 戰 國 奠 定 基 礎, 兩 漢 宋 元 兩 次 高 峰, 中 經 魏 晉 南 北 朝 的 充 實 提 高 和 隋 唐 五 代 的 持 續 發 展, 至 明 萬

More information

untitled

untitled OO 1 SQL Server 2000 2 SQL Server 2000 3 SQL Server 2000 DDL 1 2 3 DML 1 INSERT 2 DELETE 3 UPDATE SELECT DCL 1 SQL Server 2 3 GRANT REVOKE 1 2 1 2 3 4 5 6 1 SQL Server 2000 SQL Server SQL / Microsoft SQL

More information

目錄... ivv...vii Chapter DETECT

目錄... ivv...vii Chapter DETECT ... ivv...vii Chapter 1 1.1... 5 1.2... 6 1.3 DETECT... 11 1.3.1... 12 1.3.1.1...12 1.3.1.2...13 1.3.1.3...14 1.3.1.4...15 1.3.1.5...15 1.3.1.6...16 1.3.2 DETECT... 17 1.3.3... 19 1.3.4... 20... 22 Chapter

More information

1. 投 行 国 际 化 的 路 径 1.1 国 外 投 行 国 际 化 历 程 国 外 投 行 国 际 化 实 践 最 早 始 于 上 世 纪 初,80 代 后 随 主 要 资 本 主 义 国 家 证 券 市 场 开 放 而 加 速, 至 本 世 纪 初 为 止, 国 际 大 型 投 行 大 多

1. 投 行 国 际 化 的 路 径 1.1 国 外 投 行 国 际 化 历 程 国 外 投 行 国 际 化 实 践 最 早 始 于 上 世 纪 初,80 代 后 随 主 要 资 本 主 义 国 家 证 券 市 场 开 放 而 加 速, 至 本 世 纪 初 为 止, 国 际 大 型 投 行 大 多 投 行 国 际 化 的 路 径 分 析 林 采 宜 吴 齐 华 要 点 : 国 外 大 型 投 行 国 际 化 的 发 展 轨 迹 是 : 国 内 业 务 海 外 化 ( 追 随 客 户 ) 海 外 业 务 本 土 化 ( 去 属 地 化 ) 业 务 全 球 化 ( 跨 国 垄 断 ) 海 外 投 行 国 际 化 的 经 验 和 教 训 可 以 总 结 为 : (1) 国 内 市 场 地 位 和 资

More information

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc Key @ Value Chain fanchihmin@yahoo.com.tw 1 Key@ValueChain 1994.6 1996.6 2000.6 2000.10 ~ 2004.10 (E- RD / Pre-Sales / Consultant) APS, Advanced Planning & Scheduling CDP, Collaborative Demand Planning

More information

Oracle高级复制配置手册_业务广告_.doc

Oracle高级复制配置手册_业务广告_.doc Oracle 高 级 复 制 配 置 手 册 作 者 : 铁 钉 Q Q: 5979404 MSN: nail.cn@msn.com Mail: nail.cn@msn.com Blog: http://nails.blog.51cto.com Materialized View Replication 复 制 模 式 实 现 了 单 主 机 对 多 个 复 制 站 点 的 数 据 同 步. 在 主

More information

untitled

untitled Chapter 01 1.0... 1-2 1.1... 1-2 1.1.1...1-2 1.1.2...1-4 1.1.2.1... 1-6 1.1.2.2... 1-7 1.1.2.3... 1-7 1.1.2.4... 1-7 1.1.2.5... 1-8 1.1.2.6... 1-8 1.1.3??...1-8 1.1.4...1-9 1.2...1-12 1.3...1-14 1.4...1-17

More information

0000 00 10701 0000000000 XX000.00 0000 00 Dissertation Title in English A dissertation submitted to XIDIAN UNIVERSITY in partial fulfillment of the requirements for the degree of Doctor By Firstname

More information

プリント

プリント For Higher Customer Satisfaction, We Bridge the SAS System Between Customer s World. Graph Sweet? Suite?! 02 03 04 ODS GRAPHICS ON; ODS PATH SHOW; ODS PATH : 1. SASUSER.TEMPLAT(UPDATE) 2. SASHELP.TMPLMST(READ)

More information

回滚段探究

回滚段探究 oracle oracle internal DBA oracle document oracle concepts oracle document oracle DBWR update t set object_id = '0' where object_id = '12344'; 1 row updated. commit; Commit complete. 0 12344 12344 0 10%

More information

ebook10-5

ebook10-5 Oracle 7.x RDBMS 5 Oracle S Y S S Y S T E M O r a c l e 5.1 O r a c l e R D B M S O r a c l e O r a c l e 5.2 SYS SYSTEM S Y S S Y S T E M O r a c l e S Y S V $ D B A C O N N E C T R E S O U R C E S Y

More information

JCR... 3 JCR... 3 ISI Web of Knowledge... 4 Cross Search... 5 Cross Search... 5 Cross Search ISI Web of Knowledge WOS... 8 Externa

JCR... 3 JCR... 3 ISI Web of Knowledge... 4 Cross Search... 5 Cross Search... 5 Cross Search ISI Web of Knowledge WOS... 8 Externa Journal Citation Reports On the Web JCR... 3 JCR... 3 ISI Web of Knowledge... 4 Cross Search... 5 Cross Search... 5 Cross Search... 5... 7 ISI Web of Knowledge... 7... 8 WOS... 8 External Collections...

More information

Microsoft PowerPoint - 05-SQL3-advanced.ppt

Microsoft PowerPoint - 05-SQL3-advanced.ppt SQL: Interactive Queries (2) Prof. Weining Zhang Cs.utsa.edu Aggregate Functions Functions that take a set of tuples and compute an aggregated value. Five standard functions: count, min, max, avg, sum

More information

SQL: Interactive Queries (2)

SQL: Interactive Queries (2) SQL: Interactive Queries (2) Prof. Weining Zhang Cs.utsa.edu Aggregate Functions Functions that take a set of tuples and compute an aggregated value. Five standard functions: count, min, max, avg, sum

More information

<4D6963726F736F667420576F7264202D2033A470AEC9B0B7A8ABB6B0B056ACE3B2DFA4E2A5552E646F63>

<4D6963726F736F667420576F7264202D2033A470AEC9B0B7A8ABB6B0B056ACE3B2DFA4E2A5552E646F63> 中 華 民 國 健 身 運 動 協 會 社 區 健 走 教 室 100 點 種 子 指 導 員 研 習 手 冊 中 華 民 國 健 身 運 動 協 會 http://www.exercise.org.tw 0 課 程 內 容 : 時 間 課 程 內 容 講 師 備 註 健 走 研 習 13:30 健 走 實 技 與 指 導 劉 定 國 14:30 健 走 實 務 劉 定 國 講 師 一 位 15:00

More information

27-11-22 8627 65799773 liuyr@cjsc.com.cn 28 27 65 121.22% 91.3% 619 898 27 6282 78 12 7681 28 6681 5681 4681 3681 2681 1681 6-11 6-12 7-1 7-2 7-3 7-4 7-5 7-6 7-7 7-8 7-9 7-1 28 28 WIND 28 28 15% 5.1~5.2

More information

目 標 評 核 項 目 中 央 研 究 院 102 年 總 辦 事 處 計 算 中 心 績 效 評 比 報 告 執 行 績 效 ( 含 設 定 目 標 之 複 雜 度 及 挑 戰 性 目 標 達 成 度 實 際 成 效 ) 共 同 性 評 核 項 目 一 行 政 效 能 ( 一 ) 建 置 本 院

目 標 評 核 項 目 中 央 研 究 院 102 年 總 辦 事 處 計 算 中 心 績 效 評 比 報 告 執 行 績 效 ( 含 設 定 目 標 之 複 雜 度 及 挑 戰 性 目 標 達 成 度 實 際 成 效 ) 共 同 性 評 核 項 目 一 行 政 效 能 ( 一 ) 建 置 本 院 中 央 研 究 院 102 年 總 辦 事 處 計 算 中 心 績 效 評 比 報 告 目 錄 壹 共 同 性 評 核 項 目... 1 一 行 政 效 能... 1 ( 一 ) 建 置 本 院 科 研 採 購 平 台... 1 ( 二 ) 規 劃 全 院 網 路 電 話 基 礎 建 設... 2 ( 三 ) 通 報 與 追 蹤 處 理 院 內 資 訊 安 全 事 項... 3 ( 四 ) 一 般

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

Chapter 24 DC Battery Sizing

Chapter 24  DC Battery Sizing 26 (Battery Sizing & Discharge Analysis) - 1. 2. 3. ETAP PowerStation IEEE 485 26-1 ETAP PowerStation 4.7 IEEE 485 ETAP PowerStation 26-2 ETAP PowerStation 4.7 26.1 (Study Toolbar) / (Run Battery Sizing

More information

USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command Reference Edi

USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command Reference Edi 9 61 62 65 67 69 69 71 74 76 Maya Edit > Keys > Paste Keys Maya 61 USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command

More information

自动化接口

自动化接口 基 于 文 件 的 数 据 交 换 的 注 意 事 项 1 SPI 2 COMOS Automation 操 作 手 册 通 用 Excel 导 入 3 通 过 OPC 客 户 端 的 过 程 可 视 化 4 SIMIT 5 GSD 6 05/2016 V 10.2 A5E37093378-AA 法 律 资 讯 警 告 提 示 系 统 为 了 您 的 人 身 安 全 以 及 避 免 财 产 损 失,

More information

( Version 0.4 ) 1

( Version 0.4 ) 1 ( Version 0.4 ) 1 3 3.... 3 3 5.... 9 10 12 Entities-Relationship Model. 13 14 15.. 17 2 ( ) version 0.3 Int TextVarchar byte byte byte 3 Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

Oracle Database 10g: SQL (OCE) 的第一堂課

Oracle Database 10g: SQL (OCE) 的第一堂課 商 用 資 料 庫 的 第 一 堂 課 中 華 大 學 資 訊 管 理 系 助 理 教 授 李 之 中 http://www.chu.edu.tw/~leecc 甲 骨 文 俱 樂 部 @Taiwan Facebook 社 團 https://www.facebook.com/groups/365923576787041/ 2014/09/15 問 題 一 大 三 了, 你 為 什 麼 還 在 這

More information

untitled

untitled 1....2...2...6 2....10 3. UDP...15 4. TCP...16...16...16 1 1. PC COM1 COM2 COM1 COM2 DTU 2 3 4 COM1 COM1 COM2 COM ID 13900000000 DTU COM1 5 COM2 DTU DTU DTU DTU DTU DTU DTU ID ID 3031 3032 2 ID 13900000001

More information

一步一步教你搞网站同步镜像!|动易Cms

一步一步教你搞网站同步镜像!|动易Cms 一 步 一 步 教 你 搞 网 站 同 步 镜 像! 动 易 Cms 前 几 天 看 见 论 坛 里 有 位 朋 友 问 一 个 关 于 镜 像 的 问 题, 今 天 刚 好 搞 到 了 一 个, 于 是 拿 出 来 和 大 家 一 起 分 享 了! 1. 介 绍 现 在 的 网 站 随 着 访 问 量 的 增 加, 单 一 服 务 器 无 法 承 担 巨 大 的 访 问 量, 有 没 有 什 么

More information

WinMDI 28

WinMDI 28 WinMDI WinMDI 2 Region Gate Marker Quadrant Excel FACScan IBM-PC MO WinMDI WinMDI IBM-PC Dr. Joseph Trotter the Scripps Research Institute WinMDI HP PC WinMDI WinMDI PC MS WORD, PowerPoint, Excel, LOTUS

More information

RW Salary Survey 2015 - China A4

RW Salary Survey 2015 - China A4 2015 中国 2014年 中国政府实施从纯制造业和基础设施行业向高科 技行业的转型 加强专业服务和消费者领域发展 以出口 刺激经济增长 由于政府的投资政策重新定位 我们看到越来越多的研发 中心在国内成立 更多国际专业服务公司进入中国市场 奢侈品及零售品牌进驻苏州 杭州 南京和成都等二线城 市 带动了当地市场的招聘需求 纵观总体经济 经济普遍增长 就业市场前景乐观 雇员 与雇主信心增强 2014年前三季度GDP增长率达7.4%

More information

SQL Server SQL Server SQL Mail Windows NT

SQL Server SQL Server SQL Mail Windows NT ... 3 11 SQL Server... 4 11.1... 7 11.2... 9 11.3... 11 11.4... 30 11.5 SQL Server... 30 11.6... 31 11.7... 32 12 SQL Mail... 33 12.1Windows NT... 33 12.2SQL Mail... 34 12.3SQL Mail... 34 12.4 Microsoft

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information