<!-- demodemo.xml --><dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <version>2.7.0</version> ...
分类:
其他好文 时间:
2021-01-26 12:23:58
阅读次数:
0
1、MySQL配置: jdbc:mysql://<主机名>:<端口号(默认3306)>/<数据库名> url=jdbc:mysql://localhost:3306/testdb?useUnicode=true&characterEncoding=utf-8 driver=com.mysql.jdb ...
分类:
数据库 时间:
2021-01-26 12:21:17
阅读次数:
0
目录 一 安装、配置virtualenv 1.1下载包 1.2 安装virtualenv 1.3 创建独立的虚拟环境 1.4 虚拟环境简单操作 二 虚拟环境virtualenvwrapper 2.1 安装虚拟环境virtualenvwrapper 2.2 创建一个虚拟环境简单使用 在使用 Pytho ...
分类:
编程语言 时间:
2021-01-26 12:20:14
阅读次数:
0
client.go:9:2: cannot find module providing package google.golang.org/grpc: working directory is not part of a module 因为开启mod模式了export GO111MODULE=aut ...
分类:
其他好文 时间:
2021-01-26 12:04:45
阅读次数:
0
@ 一、环境介绍 系统版本 IP地址 主机名 角色 centos7.5 192.168.1.104 salt-master master centos7.5 192.168.1.105 salt-client client 环境说明: centos7.5默认的python环境是2.7版本。 官方说明 ...
分类:
系统相关 时间:
2021-01-26 12:01:22
阅读次数:
0
Maven安装前准备 1、JDK已安装1.7或更高版本,JDK安装见此博客 2、IDEA或Eclipse,此处以IDEA为例 Maven下载: 下载地址:点击此处 ? Maven安装: 解压下载的程序包并放到想要配置的目录,F:\Maven\apache-maven-3.6.3 ? 将Maven添加 ...
分类:
其他好文 时间:
2021-01-25 11:35:04
阅读次数:
0
当一个表中数据量特别大的时候,如果一次性把数据显示给用户,会造成页面过于庞大,体验极差,解决方法就是使用分页查询。 使用分页查询首先要会使用rownum关键字,Oracle对外提供的自动给查询结果编号的关键字,与每行数据没有关系。 注:rownum只能做 < 、<= 的判断,不能进行 > 、 >= ...
分类:
数据库 时间:
2021-01-25 11:25:56
阅读次数:
0
1、基本命令 select bar(number,0,4) from numbers(4); select now(); 数据导入:cat t.tsv| clickhouse-client --query "insert into t from tsv" 数据导出:clickhouse-client ...
分类:
其他好文 时间:
2021-01-25 10:52:34
阅读次数:
0
背景:由于技术架构的调整,数据库需要进行迁移,将表和存储过程从Oracle数据库迁移到另外一个Oracle数据库,在存储过程迁移过程中,遇到个问题,使用WM_CONCAT的存储过程编译不会通过,并且报 ORA-00904: "WM_CONCAT": invalid identifier 错误。 产生 ...
分类:
其他好文 时间:
2021-01-25 10:38:49
阅读次数:
0
server端 unit ServerMainFormUnit; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.C ...