240 发简信
IP属地:宁夏
  • Oracle监听日志文件过大的处理

    listener.log会不断增长,造成存储空间紧张时DBA就应该设法处理。在windows下有时会出现“拒绝访问”的情况,给处理带来麻烦。在网...

  • linux查看端口和服务

    1、查看所有端口netstat -tunlp2、查看防火墙开放的端口firewall-cmd --list-all3、查看某个端口lsof -i...

  • MySQL清理binlog

    通过参数binlog_expire_logs_seconds设置binlog的过期时间(单位:秒),参数binlog_expire_logs_a...

  • docker中的Oracle数据库

    Using the Full image Starting an Oracle Database 23ai Free containerpodm...

  • mysql存储过程处理错误

    1定义错误处理程序DECLARE action HANDLER FOR condition_value statement;action:可以是...

  • is [not] distinct from

    SQL的is [not] distinct from是“=”和“is”的混合。常规的“=”遇到NULL时,会返回NULL。is [not] di...

  • try完整语法示例

    try:x=100/0except Exception as e:print('error:', e)else:print('x =', x)f...

  • pandas

    1、seriespandas.Series( data, index, dtype, name, copy)data:一组数据(ndarray ...

  • numpy

    import numpy as np 1、ndarrayN 维数组对象 ndarray,它是一系列同类型数据的集合,以 0 下标为开始进行集合中...