摘要: DO $$ DECLARE names CURSOR FOR select * from pg_tables where schemaname='riskzoning' and tablename like '%_clip' ; BEGIN FOR stmt IN names LOOP EXECUT 阅读全文
posted @ 2022-05-10 10:00 qukaige 阅读(261) 评论(0) 推荐(0) 编辑
摘要: -- 查询被锁住的表 (SELECT pid FROM pg_stat_activity where query ~ 'fzqh_3_fzqhjg_1_45947') -- 中止进程 select pg_terminate_backend((SELECT pid FROM pg_stat_activ 阅读全文
posted @ 2021-12-01 13:05 qukaige 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 最新整理 【腾讯文档】centos 7 Oracle12c rac 安装 麒麟v10 oracle 12c rac 安装https://docs.qq.com/doc/DU0lFcGdvcVpKUndj 阅读全文
posted @ 2024-10-29 18:02 qukaige 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Kylin Linux Advanced Server V10 4.19.90-23.8.v2101.ky10.x86_64 Kylin Linux Advanced Server V10 4.19.90-23.8.v2101.ky10.x86_64 镜像地址获取方式 通过百度网盘分享的文件:Kyl 阅读全文
posted @ 2024-10-21 15:56 qukaige 阅读(46) 评论(0) 推荐(0) 编辑
摘要: su - postgres psql select * from pg_tables where schemaname = 'public' and tablename like '%user%'; select * from "system$user" {BCrypt}$2a$12$wckD.qi 阅读全文
posted @ 2024-05-27 11:47 qukaige 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 需求: 将公网nexus数据迁移到内网 1. 将maven proxy数据迁移到 hosted 2. 将apt proxy 迁移至 hosted 附 迁移过程和脚本 Nexus数据迁移https://docs.qq.com/doc/DU3dIZGZ1dmxmUVZU 阅读全文
posted @ 2024-04-09 11:02 qukaige 阅读(151) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <configuration> <!-- %m输出的信息,%p日志级别,%t线程名,%d日期,%c类的全名,%i索引【从数字0开始递增】,,, --> <!-- appender是configuration的子节点,是负责 阅读全文
posted @ 2023-12-08 18:26 qukaige 阅读(9) 评论(0) 推荐(0) 编辑
摘要: nginx跨域配置 location /api { # 允许跨域请求的域,* 代表所有。如果是特定的域名,应该将 * 替换为确切的域名。 add_header 'Access-Control-Allow-Origin' '*' always; # 允许带上 cookie 请求 add_header 阅读全文
posted @ 2023-11-17 11:14 qukaige 阅读(499) 评论(0) 推荐(0) 编辑
摘要: vim /etc/systemd/system/frl.service [Unit] Description=uWSGI instance to serve file-redis-load After=network.target [Service] User=web WorkingDirector 阅读全文
posted @ 2023-09-17 14:28 qukaige 阅读(13) 评论(0) 推荐(0) 编辑
摘要: @echo off title:服务名称 echo 启动... start "服务名称" java -Dfile.encoding=utf-8 -Xms128m -Xmx256m -XX:MetaspaceSize=128M -XX:MaxMetaspaceSize=256M -jar 服务名称.j 阅读全文
posted @ 2023-09-07 14:55 qukaige 阅读(82) 评论(0) 推荐(0) 编辑
摘要: package com.example.simpleframework.annotation; import java.lang.annotation.Annotation; import java.lang.reflect.Field; import java.lang.reflect.Metho 阅读全文
posted @ 2023-07-18 22:25 qukaige 阅读(6) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Test { public static void main(String[] args) { List<Map<String, Object>> list = new ArrayList<>(); Map<String, Objec 阅读全文
posted @ 2023-07-18 11:14 qukaige 阅读(10) 评论(0) 推荐(0) 编辑