摘要: The Real-World Performance (RWP) Group is part of the Oracle Database Development organization. Engineers in the RWP group focus on extracting the max 阅读全文
posted @ 2018-11-24 22:58 海东潮 阅读(541) 评论(0) 推荐(0)
摘要: by Chris Saxon-Oracle It's Here: Oracle Database 12c Release 2 (12.2) Is available on Oracle Cloud. With it comes a whole host of new features to help 阅读全文
posted @ 2018-11-24 22:50 海东潮 阅读(403) 评论(0) 推荐(0)
摘要: https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-sets.html 10.10.1 Unicode Character Sets 10.10.1 Unicode Character Sets 10.10.1 Unicode Charac 阅读全文
posted @ 2018-11-24 09:08 海东潮 阅读(375) 评论(0) 推荐(0)
摘要: 字符集错误转换导致的问题 UTF-8格式编码的字节流,按GBK字符集转换为字符串,会出现乱码,这很正常。但将其重新转为字节流,再用UTF-8字符集转为字符串,还是乱码。这就让我产生了疑惑,虽然使用错误的字符集必然导致乱码,但字节的信息并没有改变,因此再转为字节流,用正确的字符集解码,应该得到正常的字 阅读全文
posted @ 2018-11-24 09:00 海东潮 阅读(3765) 评论(0) 推荐(0)
摘要: 0 查看字符集(character_set/collation) use information_schema;desc tables; --一定记住tables表,information_schema中的metadata都可以查到 -- 查看db的默认,DEFAULT_CHARACTER_SET_ 阅读全文
posted @ 2018-11-24 08:56 海东潮 阅读(2967) 评论(0) 推荐(0)
摘要: Everything you thought you knew about strings is wrong. 也许你会诧异,字符串有什么难的,即便遇到乱码的情况随便 Google 下就能找到解决方法,但是这样你不觉得有种被动的感觉嘛,我觉得和学习任何东西一样,学习编程首要是学习其思想,知道某事物为 阅读全文
posted @ 2018-11-24 08:40 海东潮 阅读(596) 评论(0) 推荐(0)
摘要: 一、现象 在生产环境中我们偶尔会遇到show processlist;显示host为 unauthenticated user 这样的连接,同时伴有数据库服务器层面的load,sys cpu较高,或者thread running异常。 二、分析 类似于校园门卫看到一个陌生的人进入学校,对TA提出的哲 阅读全文
posted @ 2018-11-24 08:10 海东潮 阅读(6264) 评论(0) 推荐(0)
摘要: 知道linux帮助文件(man-pages,手册页)一般放在,$MANPATH/man 目录下面,而且按照领域与语言放到不同的目录里面。 看了上一章,要找那个命令使用相关手册,只要我们按照领域区分,到对于目录去查看与命令对应的文件解压,cat file 就可以看到一篇详细的文档了。 但是与快速索引查 阅读全文
posted @ 2018-11-24 08:06 海东潮 阅读(39750) 评论(1) 推荐(1)
摘要: man top | col > top.txt 阅读全文
posted @ 2018-11-24 08:02 海东潮 阅读(250) 评论(0) 推荐(0)