摘要:
use information_schema; select table_name,table_rows from tables where TABLE_SCHEMA = 'reconciliation_platform' order by table_rows desc; 阅读全文
摘要:
原因 SELinux(安全增强型 Linux)阻止了 mysqld 服务绑定到你在 my.cnf 中设置的端口(这里是 13306 端口) 解决方案 # 如果你的环境允许且确实需要启用 nis_enabled 布尔值来解决问题,可以执行以下命令 setsebool -P nis_enabled 1 阅读全文
摘要:
亲测有效 https://blog.csdn.net/wqc19920906/article/details/79791322 阅读全文
摘要:
依赖 <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> 代码 package com.dl.dml.business.test.tes 阅读全文
摘要:
u-picker和u-datetime-picker嵌入在input展示后,点击input会先召唤出键盘,关闭键盘才会显示对应的u-picker和u-datetime-picker事件,通过以下方案解决 <!-- 套壳使用事件,增加pointer-events: none;让input事件失效,然后 阅读全文
摘要:
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="192.168.xx.xx" port protocol="tcp" port="18848" accept' firewall-cmd --pe 阅读全文
摘要:
win键和alt反过来了 fn+w切换到win模式 win键不好使 可能是锁定了,使用fn+win解锁 不能单独使用f2 使用fn + w 键切换 阅读全文
摘要:
参考:https://zhuanlan.zhihu.com/p/589407812 阅读全文
摘要:
直接参考:https://xt.kejizhijia.net/news/660.html 测试用了:XNTT9-CWMM3-RM2YM-D7KB2-JB6DV 阅读全文
摘要:
# 一、导出 ```sh #orcl:数据库服务实例名 #dumpfile:导出的文件名称 #tablespace:需要导出的表空间名称 expdp username/password@ip:port/orcl dumpfile=xxxx.dmp tablespace=xxxx ``` > 如果以下 阅读全文