摘要:
正则快速入门网站 https://www.jb51.net/tools/zhengze.html 正则测试&理解网站:https://regexr.com 正则可视化网站:https://regex-vis.com 反选 不以数字 \d 开头的行,使用下面的正则表达式: ^(?!\d).*$ 解释: 阅读全文
ORA-12519, TNS:no appropriate service handler found The Connection descriptor used by the client was
摘要:
遇到连接Oracle的问题,报错如题:ORA-12519: TNS:no appropriate service handler found,应该是项目中的有些算法把所有连接都占用了,没办法只能增大数据的连接,具体做法如下: select count(*) from v$process; --当前的 阅读全文