2017年3月24日
摘要: http://blog.csdn.net/wangquannuaa/article/details/47129357 阅读全文
posted @ 2017-03-24 10:18 ppqchina 阅读(98) 评论(0) 推荐(0) 编辑
  2017年3月8日
摘要: In [11]: df Out[11]: x y 0 a 1 1 b 2 In [12]: df.dtypes Out[12]: x object y object dtype: object In [13]: df.convert_objects(convert_numeric=True) Out 阅读全文
posted @ 2017-03-08 01:33 ppqchina 阅读(217) 评论(0) 推荐(0) 编辑
  2017年3月7日
摘要: simple way: --创建procedure create or replace procedure sql_test(out_return out sys_refcursor) is begin open out_return for 'select * from tgp_funds'; e 阅读全文
posted @ 2017-03-07 06:02 ppqchina 阅读(361) 评论(0) 推荐(0) 编辑
  2017年2月20日
摘要: http://blog.csdn.net/rotkang/article/details/21008271 阅读全文
posted @ 2017-02-20 13:32 ppqchina 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 一个Kettle异常的解决方式 最近kettle中的几个转换抛出如下异常: Because of an error, this step can't continue: org.pentaho.di.core.exception.KettleException: Error inserting ro 阅读全文
posted @ 2017-02-20 13:26 ppqchina 阅读(5351) 评论(0) 推荐(0) 编辑
  2017年2月18日
摘要: http://blog.csdn.net/taonull/article/details/42923015 阅读全文
posted @ 2017-02-18 07:51 ppqchina 阅读(96) 评论(0) 推荐(0) 编辑
  2017年2月10日
摘要: https://zhidao.baidu.com/question/1445874299396024060.html 1 1 SHOW TABLES LIKE '%tb_bp_d_case%'; SHOW TABLES LIKE '%tb_bp_d_case%'; 2. 1 select TABLE 阅读全文
posted @ 2017-02-10 16:40 ppqchina 阅读(808) 评论(0) 推荐(0) 编辑
摘要: source: http://www.cnblogs.com/victorwu/p/5762931.html Python 标准库的 ConfigParser 模块提供一套 API 来读取和操作配置文件。 配置文件的格式 a) 配置文件中包含一个或多个 section, 每个 section 有自己 阅读全文
posted @ 2017-02-10 09:28 ppqchina 阅读(220) 评论(0) 推荐(0) 编辑
  2017年2月9日
摘要: from pandas.io import sql sql.execute('SELECT * FROM table_name', engine) sql.execute('INSERT INTO table_name VALUES(?, ?, ?)', engine, params=[('id', 阅读全文
posted @ 2017-02-09 13:50 ppqchina 阅读(828) 评论(0) 推荐(0) 编辑
摘要: https://zhidao.baidu.com/question/371558156468168724.html 阅读全文
posted @ 2017-02-09 10:42 ppqchina 阅读(211) 评论(0) 推荐(0) 编辑