2019年5月6日

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

2019年4月26日

python 执行oracle、python脚本文件

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

posted @ 2019-04-26 16:18 iUpoint 阅读(491) 评论(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) 编辑

oracle工具sqluldr2和sqlldr的使用

摘要: 在 Oracle 数据库中,我们通常在不同数据库的表间记录进行复制或迁移时会用以下几种方法:1. 逐条insert -- 只适用少量数据更新 ALTER TABLE order_items DISABLE CONSTRAINT fk_order_items_products; alter table 阅读全文

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

R并行计算

摘要: # 参考文献: https://cosx.org/2016/09/r-and-parallel-computinghttps://blog.csdn.net/sinat_26917383/article/details/52719232 数据分析即服务(DAAS:Data Analyst as a 阅读全文

posted @ 2019-04-25 10:54 iUpoint 阅读(182) 评论(0) 推荐(0) 编辑

VMware虚拟机安装linux系统

摘要: 1. vmware+linux下载 centos 7 下载 centos软件包下载 其他镜像地址 安装软件包:rpm -ivh wget-1.14-18.el7.x86_64.rpm VMware Workstation 15.0.4 pro 下载 | 密码首字母大写 2. vmware+linux 阅读全文

posted @ 2019-04-25 10:44 iUpoint 阅读(266) 评论(0) 推荐(0) 编辑

爬虫资料

摘要: python爬虫从入门到放弃系列 Python 爬虫基础Selenium库的使用 python学习指南 selenium.webdriver chromedriver INDEX url encode/decode FontEditor、json验证、Unicode编码转换、regExr 网络爬虫教 阅读全文

posted @ 2019-04-25 10:36 iUpoint 阅读(212) 评论(0) 推荐(0) 编辑

2019年4月24日

R-shiny服务器安装及配置

摘要: R的shiny 服务器管理-入门http://www.bio-info-trainee.com/1683.html sudo systemctl start shiny-serversudo systemctl stop shiny-serversudo systemctl restart shin 阅读全文

posted @ 2019-04-24 17:04 iUpoint 阅读(541) 评论(0) 推荐(0) 编辑

2019年3月29日

数模国赛——致病基因

摘要: ## 读取数据 setwd("D:/Dasktop/数学建模/国赛2016/2016试题/B/B题附件") phenotype cc){ wh=c(wh,i) } } #length(wh);wh;colnames(genotype)[wh] ## 优比检验 cc=qchisq(alpha, df=1) #c(0.95,0.99,0.999) wh1=c() for(i in... 阅读全文

posted @ 2019-03-29 12:25 iUpoint 阅读(268) 评论(0) 推荐(0) 编辑

mysql 生成时间序列数据 - 存储过程

摘要: 由于时间自动转换为int值, 做一步转化,也可在调用时处理 use `test`; CREATE table test.test1 as SELECT state, id, `规格条码`, `色号条码`, `货号`, `在售平台`, `平台售价`, DATE_ADD('1900-01-01', In 阅读全文

posted @ 2019-03-29 12:03 iUpoint 阅读(1886) 评论(0) 推荐(0) 编辑

导航