01 2021 档案
摘要:启用函数 create extension tablefunc; --tablefunc扩展模块包含一系列返回记录表的函数。 create extension "uuid-ossp";--uuid扩展函数 卸载函数 drop extension tablefunc; drop extension "
阅读全文
摘要:update tab_wbap_wbs t set t.prepose_wbs_id = (select wbs_id from tab_wbap_wbs m where t.prepose_wbs_no = m.wbs_no and m.project_id = 281) where t.proj
阅读全文
摘要://取字符串长度 function Len(const value: string): integer; begin if Value='' then result:= 0 else result:= PInteger(Integer(Value)-4)^; end;
阅读全文
摘要:日志乱码 2021-01-16 09:00:02.943 HKT [5568] 日志: 数据库上次关闭时间为 2021-01-15 21:43:21 HKT 2021-01-16 09:00:03.019 HKT [5616] 致命错误: 数据库系统启动中 2021-01-16 09:00:03.5
阅读全文
摘要:首先安装 这个程序在安装完pg11之后自带 然后在pgadmin4中执行 CREATE EXTENSION pgagent; 这是会出现一个这个程序,然后可以正常使用了。
阅读全文
摘要:1编辑postgresql.conf文件,此文件位于postegers数据库的安装路径的data目录下,修改shared_preload_libraries这个参数,默认情况下,这个参数是注释的,按照如下进行修改: Linux中 shared_preload_libraries = '$libdir
阅读全文