--查看当前数据库的字符集编码select userenv('language') from dual;1、head -5 a.dmp 可以看到dmp文件如果不兼容,你可以用sed修改版本号sed -i 's/11.02.01/10.02.01/g' a.dmp 2、字符集的问题版,在导出数据的时候 ...
分类:
数据库 时间:
2020-11-01 20:44:18
阅读次数:
24
RUN find . | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-\1/" ...
分类:
其他好文 时间:
2020-11-01 09:30:21
阅读次数:
17
容器这个概念非常好理解。我们说过,在Python 中一切皆对象,对象的抽象就是类,而对象的集合就是容器。 列表(list: [0, 1, 2]),元组(tuple: (0, 1, 2)),字典(dict: {0:0, 1:1, 2:2}),集合(set: set([0, 1, 2]))都是容器。对于 ...
分类:
其他好文 时间:
2020-10-30 11:38:17
阅读次数:
17
算术运算符 +、-、*、/ 可以对任何数字、颜色或变量进行运算。如果可能的话,算术运算符在加、减或比较之前会进行单位换算。计算的结果以最左侧操作数的单位类型为准。如果单位换算无效或失去意义,则忽略单位。无效的单位换算例如:px 到 cm 或 rad 到 % 的转换。www.dgtais.cn // ...
分类:
其他好文 时间:
2020-10-27 11:16:41
阅读次数:
24
安装brew报错如下: $ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" curl: (7) Failed to connect to raw.git ...
分类:
其他好文 时间:
2020-10-26 11:47:36
阅读次数:
21
解决 GitHub 的 raw.githubusercontent.com 无法连接问题 在使用 curl 下载文件时,如果出现以下情况 curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection ref ...
分类:
Web程序 时间:
2020-10-24 09:48:51
阅读次数:
57
Definition (Nowhere dense set) A set $A$ in a topological space $X$ is nowhere dense if the complement of its closure is dense in $X$, i.e. $\overline ...
分类:
其他好文 时间:
2020-10-22 22:47:57
阅读次数:
24
#!/bin/bash #by wwp 2020-10-14 for ip in `cat ip.list` do { ping -c1 -W1 $ip &>/dev/null if [ $? -eq 0 ];then ssh $ip "sed -ri '/^#UseDNS/cUseDNS no' ...
分类:
其他好文 时间:
2020-10-18 09:49:45
阅读次数:
23
2020 IT邦幫忙鐵人賽 Kubernetes 原理分析系列文章 kubernetes 探討 Container & Open Container Initiative Container Runtime Interface Container Network Interface Containe ...
分类:
其他好文 时间:
2020-10-18 09:39:20
阅读次数:
21
使用中科大的有ProxmoxVE的仓库SSH登录节点,查找相关配置文档,修改中科大的源地址,操作如下:grep-rn"download.proxmox.com"/usr/share/perl5/PVE/*sed-i.bak"s#http://download.proxmox.com/images#https://mirrors.ustc.edu.cn/proxmox/images#g"/usr/s
分类:
其他好文 时间:
2020-10-18 09:31:59
阅读次数:
26