
listener.log会不断增长,造成存储空间紧张时DBA就应该设法处理。在windows下有时会出现“拒绝访问”的情况,给处理带来麻烦。在网...
1、查看所有端口netstat -tunlp2、查看防火墙开放的端口firewall-cmd --list-all3、查看某个端口lsof -i...
通过参数binlog_expire_logs_seconds设置binlog的过期时间(单位:秒),参数binlog_expire_logs_a...
Using the Full image Starting an Oracle Database 23ai Free containerpodm...
1定义错误处理程序DECLARE action HANDLER FOR condition_value statement;action:可以是...
SQL的is [not] distinct from是“=”和“is”的混合。常规的“=”遇到NULL时,会返回NULL。is [not] di...
try:x=100/0except Exception as e:print('error:', e)else:print('x =', x)f...
1、seriespandas.Series( data, index, dtype, name, copy)data:一组数据(ndarray ...
import numpy as np 1、ndarrayN 维数组对象 ndarray,它是一系列同类型数据的集合,以 0 下标为开始进行集合中...