240 发简信
IP属地:河南
  • Oracle将controlfile导出

    alter database backup controlfile to trace as ‘/home/oracle/controlfile....

  • innodb_dedicated_server

    MySQL8.0开始提供了参数innodb_dedicated_server对三个参数进行自动设置:1、innodb_buffer_pool_s...

  • 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...