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 阅读(1511) 评论(0) 推荐(0) 编辑

服务器相关

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

posted @ 2019-05-17 10:06 iUpoint 阅读(127) 评论(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 阅读(1013) 评论(0) 推荐(0) 编辑

2019年5月7日

python调用oracle存储过程

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

posted @ 2019-05-07 11:31 iUpoint 阅读(832) 评论(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 阅读(156) 评论(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 阅读(130) 评论(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) 编辑

oracle查看被锁的表及解除锁

摘要: -- 查看被锁对象 select object_name,machine,s.sid,s.serial# from v$locked_object l,dba_objects o ,v$session s where l.object_id = o.object_id and l.session_i 阅读全文

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

2019年4月26日

python 执行oracle、python脚本文件

摘要: https://blog.csdn.net/marising/article/details/6551692 阅读全文

posted @ 2019-04-26 16:18 iUpoint 阅读(488) 评论(0) 推荐(0) 编辑

2019年4月25日

python 常用库

摘要: Numpy, Pandas 数据处理 Scipy 科学计算 Matplotlib 可视化 Scikit Learn 机器学习 Keras 深度学习模型 jieba 分词 Gensim 主题(包含了诸如word2vec之类的模型) requests, bs4 网络爬虫 bottle 网站(单文件版的迷 阅读全文

posted @ 2019-04-25 11:55 iUpoint 阅读(147) 评论(0) 推荐(0) 编辑

导航