04 2022 档案
摘要:SELECT a.tablespace_name, a.bytes/1073741824 total, b.bytes/1073741824 used, c.bytes/1073741824 free, (b.bytes * 100) / a.bytes "% USED ", (c.bytes *
阅读全文
摘要:create or replace function count_rows(table_name in varchar2, owner in varchar2 default null) return number authid current_user IS num_rows number; st
阅读全文
摘要:以 word 做模板时,文档中的字符串在 xml 中可能被打散到多个节点。 给出上下界字符(比如 {} ),去除中间无用的 dom 节点,使其之间的内容在 xml 中是连续完整的字符串。 用双指针标出上下界后对其中的 dom 节点进行替换。 public static void format(Str
阅读全文