在 Windows 10 上安装 PostgreSQL 时出错:Warning:Problem running post-install step. Installation may not complete correctly Failed to start the database server ...
分类:
数据库 时间:
2020-07-30 01:47:58
阅读次数:
114
Combiner是MR程序中Mapper和Reducer之外的一种组件(本质是一个Reducer类) Combinr组件的父类就是Reducer Conbimer只有在驱动类里设置了之后,才会运行 Combiner和Reducer的区别在于运行的位置: map sort copy sort(shuf ...
分类:
其他好文 时间:
2020-07-30 01:32:34
阅读次数:
65
主要作用与拷贝文件用的。 1.shutil.copyfileobj(文件1,文件2):将文件1的数据覆盖copy给文件2。 import shutil f1 = open("1.txt",encoding="utf-8") f2 = open("2.txt","w",encoding="utf-8" ...
分类:
编程语言 时间:
2020-07-29 21:30:36
阅读次数:
79
/*Navicat MySQL Data Transfer Source Server : hbm4_devSource Server Version : 50724Source Host : 192.168.2.40:3306Source Database : test Target Server ...
分类:
数据库 时间:
2020-07-29 17:51:55
阅读次数:
186
区块链入门的几个简单概念 1. What's Block Chain ? 区块链是一门软件技术, 从本质上来看就像是一个分布式的DataBase, 是一个去中心化, 分布式技术。 由于是分布式的, 所以区块链不会仅仅存在某一个人的服务器上面, 每个人都可以搭建服务器,然后加入到区块链这个网络中来。成 ...
分类:
其他好文 时间:
2020-07-29 15:10:15
阅读次数:
195
自动化配置脚本oracle12c.sh,如下: #!/bin/sh ##gcc-4.9 ##debian-8.11,buildin glibc version is 2.19 ###################################### cat <<eof>>/etc/profile ...
分类:
数据库 时间:
2020-07-29 15:00:40
阅读次数:
75
工作中需要预测一个过程的时间,就想到了使用BP神经网络来进行预测。 简介 BP神经网络(Back Propagation Neural Network)是一种基于BP算法的人工神经网络,其使用BP算法进行权值与阈值的调整。在20世纪80年代,几位不同的学者分别开发出了用于训练多层感知机的反向传播算法 ...
分类:
编程语言 时间:
2020-07-29 14:44:54
阅读次数:
66
#!/bin/sh ##gcc-6##debian-9.13,buildin glibc version is 2.24######################################cat <<eof>>/etc/profileexport DISPLAY=192.168.157.1: ...
分类:
数据库 时间:
2020-07-29 00:45:50
阅读次数:
120
一、查看默认端口号 1、登录mysql [root@localhost ~]# mysql -uroot -pEnter password: 输入数据库密码; 2、使用show global variables like 'port'; 命令查看端口号, mysql> show global var ...
分类:
数据库 时间:
2020-07-28 22:52:56
阅读次数:
110
Mysql 数据库语句 1、说明:创建数据库CREATE DATABASE database-name2、说明:删除数据库drop database dbname3、说明:备份sql server 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk ...
分类:
数据库 时间:
2020-07-28 22:39:55
阅读次数:
92