2023年8月28日
摘要: 1.安装,参考网上教程,不再重复赘述 https://www.cnblogs.com/mindtechnist/p/17243882.html 2.注意点: 网上多数文章中为了方便,会直接在/usr/bin目录下重建python的软链接,指向python3,由于centos默认的python版本为2 阅读全文
posted @ 2023-08-28 10:22 AquariusSphere 阅读(46) 评论(0) 推荐(0)
摘要: 症状:进行表的ddl操作时,一直在loading,等待响应 怀疑锁表,查询进程表,发起的语句在等待被锁表 # show processlist; 进一步明确当前被锁定的表 # show open tables where in_use > 0; 果然是目标表 参考:https://blog.csdn 阅读全文
posted @ 2023-08-28 09:44 AquariusSphere 阅读(58) 评论(0) 推荐(0)
  2022年4月19日
摘要: 安装 docker-compose后,执行docker-compose version时,报错,错误内容:/usr/local/bin/docker-compose: line 1: {error:Document not found}: command not found 解决方案:https:/ 阅读全文
posted @ 2022-04-19 22:50 AquariusSphere 阅读(13380) 评论(2) 推荐(5)
  2015年1月10日
摘要: 在导入/创建Oracle数据库表,有时我们会检查发现,导入/创建后表,所创建的表空间并非是我们想要的默认表空间。此时我们需要先修改用户的默认表空间,再导入的方式来解决该问题。alteruser 你的用户名 defaulttablespace 你想默认的表空间例如:alteruser platform... 阅读全文
posted @ 2015-01-10 16:06 AquariusSphere 阅读(985) 评论(0) 推荐(0)