2019年5月24日

oracle 数据库下所有表结构、数据量及缺失值统计

摘要: 查用户表 select * from all_tab_comments --查询所有用户的表,视图等。 select * from all_col_comments --查询所有用户的表的列名和注释。 select * from all_tab_columns --查询所有用户的表的列名等信息。 s 阅读全文

posted @ 2019-05-24 11:05 iUpoint 阅读(834) 评论(0) 推荐(0) 编辑

python 读写.tar.gz文件 -- UnicodeDecodeError

摘要: 在用pip install 安装库的时候,偶尔会出现编码错误(如:UnicodeDecodeError: 'gbk' codec can't decode byte),对此我们可先将包下载下来(一般为.tar.gz格式),然后修改其中的错误代码,再执行本地安装即可。 参考资料: python tar 阅读全文

posted @ 2019-05-24 00:56 iUpoint 阅读(2801) 评论(0) 推荐(0) 编辑

2019年5月20日

python 画小猪佩奇

摘要: 转自:python画个小猪佩奇 阅读全文

posted @ 2019-05-20 13:22 iUpoint 阅读(252) 评论(0) 推荐(0) 编辑

2019年5月17日

sudo apt-get 与 yum 常用命令

摘要: yum -RedHat:CentOS... -xxx.rpmsudo apt-get -Debian:Ubuntu... -xxx.deb 安装工具rpm -ivh yum-2.0.4-1.rh.fr.i386.rpm 网络yum源配置 -- 以网易源为例 wget -O /etc/yum.repo 阅读全文

posted @ 2019-05-17 13:47 iUpoint 阅读(1532) 评论(0) 推荐(0) 编辑

服务器相关

摘要: 五分钟带你搞懂子网掩码 ip地址及子网掩码换算,子网划分教程 子网掩码:255.255.252.0 -> 连续0(为二进制值)的十进制值=容量=子网ip地址数,256/容量=子网数,每一子网第一个地址为网段地址,最后一个地址为广播地址,因此每一子网可用地址数=容量-2 192.168.10.0 -> 阅读全文

posted @ 2019-05-17 10:06 iUpoint 阅读(128) 评论(0) 推荐(0) 编辑

2019年5月13日

linux虚拟机安装python 及 配置环境变量

摘要: 一、安装anaconda 下载anaconda安装包 (wget -P filepath 下载链接) linux下安装anaconda教程,并添加清华镜像 报错:bunzip2: command not found 解决:yum install -y bzip2 pip install --upgr 阅读全文

posted @ 2019-05-13 14:39 iUpoint 阅读(1043) 评论(0) 推荐(0) 编辑

2019年5月7日

python调用oracle存储过程

摘要: oracle 存储过程 python调用oracle存储过程 -- 通过cx_Oracle连接 -- 通过create_engine连接 阅读全文

posted @ 2019-05-07 11:31 iUpoint 阅读(857) 评论(0) 推荐(1) 编辑

oracle 定时任务

摘要: oracle 存储过程 -- 查看系统定时任务 SELECT * FROM DBA_JOBS -- 新建定时任务 DECLARE jobno NUMBER; BEGIN SYS.DBMS_JOB.SUBMIT( JOB => jobno, /*自动生成JOB_ID*/ WHAT => 'qmcb_l 阅读全文

posted @ 2019-05-07 11:00 iUpoint 阅读(159) 评论(0) 推荐(0) 编辑

2019年5月6日

linux定时任务

摘要: linux定时任务 linux下新建python 定时任务 Centos定时执行python脚本 每月1号凌晨2点执行python脚本 * 2 1 * * python /root/anaconda3/model/qmcb_km_score.py * 3 1 * * python /root/ana 阅读全文

posted @ 2019-05-06 17:55 iUpoint 阅读(131) 评论(0) 推荐(0) 编辑

oracle 存储过程、java对象、包

摘要: oracle存储过程动态建立表、添加字段注释 oracle存储过程 实现动态行转列 oracle解析json --oracle不可用if exists,mysql可以 --DROP TABLE IF EXISTS qmcb_ls_2019_3_25; -- 匿名存储过程 -- declare cre 阅读全文

posted @ 2019-05-06 15:53 iUpoint 阅读(478) 评论(0) 推荐(0) 编辑

导航