码迷,mamicode.com
首页 >  
搜索关键字:extract    ( 966个结果
可用于Hadoop下的ETL工具——Kettle
看大家分享了好多hadoop相关的一些内容,我为大家介绍一款ETL工具——Kettle。 Kettle是pentaho公司开源的一款ETL工具,跟hadoop一样,也是java实现,其目的就是做数据整合中时数据的抽取(Extract)、转换(Transformat)、加载(Load)工作。Kett....
分类:其他好文   时间:2015-07-03 18:47:39    阅读次数:473
SSIS学习笔记
SSIS是Microsoft SQL Server Integration Services的简称,是生成高性能数据集成解决方案(包括数据仓库的提取、转换和加载 (ETL) 包)的平台。ETL,是英文 Extract-Transform-Load 的缩写,用来描述将数据从来源端经过抽取(extrac...
分类:其他好文   时间:2015-07-03 11:49:21    阅读次数:123
PHP 函数汇总
PHP extract() 函数从数组中把变量导入到当前的符号表中。$a = 'Original';$my_array = array("a" => "Cat","b" => "Dog", "c" => "Horse");extract($my_array);echo "\$a = $a; \$b ...
分类:Web程序   时间:2015-07-02 19:25:16    阅读次数:171
数独检测器:帝国理工C++作业
#include #include #include #include using namespace std;bool check_sudoku(const vector& input);int coordtoidx(int row, int col);void extract_row(const...
分类:编程语言   时间:2015-07-02 12:00:28    阅读次数:193
Siebel Tools配置
默认安装的Siebel+Tools,Tools登陆时有3个选项:Local、Sample、Server,具体涵义如下:Local:指本地数据库。按照Siebel开发建议,开发人员需要从Siebel Server的数据库中通过Siebel Remote方式Extract一个本地数据库,然后从Serve...
分类:其他好文   时间:2015-07-01 13:54:27    阅读次数:135
redis在linux下安装并测试(在spring下调用)
官网帮助文档如下 Installation Download, extract and compile Redis with: $ wget http://download.redis.io/releases/redis-3.0.2.tar.gz $ tar xzf redis-3.0.2.tar.gz $ cd redis-3.0.2 $ make The binar...
分类:编程语言   时间:2015-06-30 20:32:55    阅读次数:157
[AngularJS] Extract predicate methods into filters for ng-if and ng-show
Leaking logic in controllers is not an option, filters are a way to refactor your code and are compatible with ng-if and ng-show. Admin div ...
分类:Web程序   时间:2015-06-25 06:43:36    阅读次数:169
c#, extract number from string
usingSystem.Text.RegularExpressions;stringnumberStr=Regex.Match(str,"[0-9]").Value;参考:http://answers.unity3d.com/questions/19053/extract-number-from-s...
分类:Windows程序   时间:2015-06-24 20:58:26    阅读次数:192
goldengate一些参数整理
manager参数: AUTOSTART:指定在mgr启动时自动启动那些进程. AUTOSTART ER * AUTOSTART extract extsz  AUTORESTART:指定在mgr可以定时重启那些进程。可以在网络中断等故障恢复后自动重起,避免人工干预. AUTORESTART ER *, WAITMINUTES 5, RETRIES 3 ...
分类:其他好文   时间:2015-06-23 11:55:17    阅读次数:305
linux下压缩解压指令tar----------看完瞬间记住参数用法,从此不用再查
以前解压压缩文件老是去死记这些参数和指令,其实理解原理就不用记了,请往下看 tar 常用参数如下: -c:    create  创建一个压缩文件,那么压缩文件的时候肯定就少不了他 -x:    extract 解压一个压缩文件,那么解压文件的时候也就少不了他了 -t:    查看压缩文件(tarfile)里面的文件 以上三个参数有很强的目的性,所以有且仅有一个存在。 -z:    解...
分类:系统相关   时间:2015-06-19 16:57:41    阅读次数:171
966条   上一页 1 ... 79 80 81 82 83 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!