上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 34 下一页
摘要: OGG-00446 2019-02-12T14:57:57.668+0800 ERROR OGG-00446 Oracle GoldenGate Delivery for MySQL, r1.prm: .2019-02-12T14:57:57.668+0800 ERROR OGG-01668 Ora 阅读全文
posted @ 2019-01-29 11:52 方诚 阅读(538) 评论(0) 推荐(0) 编辑
摘要: 使用GO将show slave status查询返回的json串转为Map类型 show slave status其实只用到了string,float64两种类型,有其他类型的可以再对方法进行完善 阅读全文
posted @ 2019-01-28 19:14 方诚 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 与串联的if语句类似,switch语句提供了一个多分支条件执行的方法。不过在这里用一个专有名词来代表分支——case。每一个case可以携带一个表达式或一个类型说明符。前者又可被简称为case表达式。因此,Go语言的switch语句又分为表达式switch语句和类型switch语句。 先说表达式sw 阅读全文
posted @ 2019-01-26 16:59 方诚 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 重启了一下从库,忘记先stop slave ,直接mysqladmin shutdown关闭实例,结果起不来了 mysql> start slave;ERROR 1872 (HY000): Slave failed to initialize relay log info structure fro 阅读全文
posted @ 2019-01-25 12:22 方诚 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1. drop database 在数据量很大的情况下,最好先对表进行truncate,然后再drop database;不然会卡住很长的时间。 2. 数据的逻辑导入导出 如果数据量大,又需要进行逻辑操作,并且对数据库的一致性要求不高的话,最好设置多线程导出导入,可以缩短很多操作时间 阅读全文
posted @ 2019-01-23 18:52 方诚 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 标识符 The first character is a letter.The remaining characters are alphanumeric or _.或The first character is _.The identifier is more than one character 阅读全文
posted @ 2019-01-22 13:12 方诚 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 概述 安装Git,使用Git Bash创建本地Git全局用户名,提交远程代码时将以此用户名显示git config --global --replace-all user.email "itoracle@aliyun.com"git config --global --replace-all use 阅读全文
posted @ 2019-01-22 11:04 方诚 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 点击Configure,选择插件Plugins 安装后重启一下IDEA D:\app\Go是Go的安装路径,没有的话,可以下载安装一下Go 选择go项目的代码位置 创建三个文件夹,在src下进行编码 路径配置 阅读全文
posted @ 2019-01-21 23:08 方诚 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 标准库std https://doc.rust-lang.org/std/index.html 创建项目,查看项目库 [root@itoracle test]# cargo new guessing_game Created binary (application) `guessing_game` 阅读全文
posted @ 2019-01-18 10:24 方诚 阅读(313) 评论(0) 推荐(0) 编辑
摘要: cargo是rust的编译与打包工具,可将rust打包成为一个可执行性文件。生成的可执行性文件不能跨系统的大版本,比如在linux7上打包,那么程序无法在linux6上执行。 如果修改了代码,cargo run会先编译再运行 cargo check进行代码的编译,但不生成可执行文件,速度比cargo 阅读全文
posted @ 2019-01-15 18:38 方诚 阅读(667) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 34 下一页