摘要:
1.查看失效的连接数SELECT count(*) FROM gv$session WHERE inst_id = 1 and status = 'INACTIVE'2.查看总连接SELECT count(*) FROM gv$session WHERE inst_id = 13.查看失效链接SEL 阅读全文
摘要:
1、一般情况下,更新sql语句:update demo set name = 'XX' where name = 'YY'; 有的时候,需要用到replace()函数 2、使用的函数为replace()含义为:替换字符串replace(原字段,“原字段旧内容“,“原字段新内容“,) 例如: 3、需要 阅读全文