1. RMAN的默认配置 1 RMAN> show all; 2 3 using target database control file instead of recovery catalog 4 RMAN configuration parameters for database with db ...
分类:
其他好文 时间:
2021-01-22 12:06:50
阅读次数:
0
地址 https://vjudge.net/problem/POJ-3050 The cows play the child's game of hopscotch in a non-traditional way. Instead of a linear set of numbered boxes ...
分类:
其他好文 时间:
2021-01-18 11:21:11
阅读次数:
0
客户端报“[ERROR] code: 505, UNEXPECTED_FRAME - expected content header for class 60, got non content header frame instead, recoverable: false, server: tru ...
分类:
其他好文 时间:
2021-01-07 12:36:33
阅读次数:
0
php抽象类 抽象方法必须被子类继承实现,所以不能为私有,只能是受保护的或公有的; 抽象类子类的方法访问控制级别必须和抽象类相等或更宽松。例如,父类的抽象方法是受保护的,子类实现时则必须为受保护的或者公有的; 抽象方法的实现,必传参数的数量和类型必须严格一致; 抽象类的非抽象方法,子类可不实现,等同 ...
分类:
Web程序 时间:
2021-01-06 12:43:47
阅读次数:
0
DML触发器: 1、 after触发器(之后触发) a、 insert触发器 b、 update触发器 c、 delete触发器 2、 instead of 触发器 (之前触发) 其中after触发器要求只有执行某一操作insert、update、delete之后触发器才被触发,且只能定义在表上。而 ...
分类:
数据库 时间:
2020-11-21 12:10:56
阅读次数:
12
dt.Columns.Add("EffectiveDate", typeof(DateTime)); DateTime? effectivedate=null; if (lastRow["Effective_x0020_Date"] != DBNull.Value) { effectivedate ...
分类:
数据库 时间:
2020-11-12 13:57:50
阅读次数:
12
1、抽离第三方包时报错webpack.optimize.CommonsChunkPlugin has been removed, please use config.optimization.splitChunks instead. 2、经查证又是因为版本问题重新编写配置 与 plugins 同级添 ...
分类:
Web程序 时间:
2020-10-14 20:40:45
阅读次数:
45
Table does not support optimize, doing recreate + analyze instead 优化InnoDb 表提示错误! That's really an informational message. Likely, you're doing OPTIMIZ ...
分类:
其他好文 时间:
2020-08-31 13:06:17
阅读次数:
58
题目 给定一个 n × n 的二维矩阵表示一个图像。 将图像顺时针旋转 90 度。 思路 没有想到。看过解答后知道可以转置加翻转即可,且能达到最优的时间复杂度O(N^2)。 实现 class Solution: def rotate(self, matrix: List[List[int]]) -> ...
分类:
其他好文 时间:
2020-08-03 12:19:41
阅读次数:
82
Mosquitto的配置文件mosquitto.conf解析 本文主要是针对websocket、ssl、mosquitto-auth-plug做相应的配置 主要还是需要根据项目的业务进行相应的配置 主要中文解析可以参考https://blog.csdn.net/luckykapok918/artic ...
分类:
其他好文 时间:
2020-07-28 17:00:05
阅读次数:
174