摘要: 流程oracle数据库 oracle数据库 ``` [root@node-3 oracle]# ls u01 u01-01 u01-02 [root@node-3 oracle]# pwd /root/fileData/bpm/oracle [root@node-3 oracle]# ``` u01 阅读全文
posted @ 2023-08-09 16:17 unicoe 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 这个错误其实是 debug 级别的错误,是不影响运行的。 错误栈为: 15:27:57.726 DEBUG 12844 [nio-8080-exec-1] .s.a.AnnotationAsyncExecutionInterceptor : Could not find unique TaskExe 阅读全文
posted @ 2023-05-18 20:37 unicoe 阅读(69) 评论(0) 推荐(0) 编辑
摘要: ####1.通过存储过程改 DROP PROCEDURE IF EXISTS addColumn; DELIMITER $$ CREATE PROCEDURE addColumn () BEGIN-- 定义表名变量 DECLARE s_tablename VARCHAR ( 100 ); /*显示表 阅读全文
posted @ 2023-05-17 21:13 unicoe 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/m0_37615458/article/details/127203480 设置访问特定桶 { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3: 阅读全文
posted @ 2023-04-19 09:32 unicoe 阅读(562) 评论(0) 推荐(0) 编辑
摘要: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root'; 阅读全文
posted @ 2023-04-06 11:02 unicoe 阅读(11) 评论(0) 推荐(0) 编辑
摘要: set GLOBAL max_connections=10000; show global status like 'Max_used_connections'; show variables like '%max_connections%'; flush hosts; 阅读全文
posted @ 2022-12-29 12:10 unicoe 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1、零件的crud wtpartmaster wtpart wtpartdefinition wtpartdefinition stringdefinition stringvalue 要求: 增:新建零件,继承至wtpart,并同wtpartmaster建立关联 类型定义至wtpartdefini 阅读全文
posted @ 2022-10-18 08:35 unicoe 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 使用docker bcdedit /set hypervisorlaunchtype auto 使用vm bcdedit /set hypervisorlaunchtype off 阅读全文
posted @ 2022-10-17 19:58 unicoe 阅读(23) 评论(0) 推荐(0) 编辑
摘要: select * from wtpartmaster ; select * from wtpartmaster where ida2a2 = 611205; select * from wtpart where IDA3MASTERREFERENCE = 611205; select * from 阅读全文
posted @ 2022-10-10 20:01 unicoe 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 在从wsl升级到wsl2后,通过如下命令,就可使用wsl2 bcdedit /set hypervisorlaunchtype auto 在wsl中,使用service docker start 命令启动docker,提示内核版本太低,通过升级wsl2,即可在wsl2环境中使用docker 参考: 阅读全文
posted @ 2022-09-08 16:37 unicoe 阅读(162) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_53299145/article/details/121954239 阅读全文
posted @ 2022-07-14 09:08 unicoe 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 一.session丢失问题 一个服务器上搭建了多个tomcat或者weblogic,端口不一样,同时启动访问时session丢失。如:A,B两个服务,在浏览器中登录访问A后,当前打开的浏览器上在开一个选项卡访问B服务后,回过来点击访问A时session丢失,需要重新登录A才可以访问。经过资料查找,发 阅读全文
posted @ 2022-07-06 20:13 unicoe 阅读(80) 评论(0) 推荐(0) 编辑
摘要: [root@localhost Downloads]# docker logs -f --tail 100 cac Database not initialized. Initializing database. Starting tnslsnr Copying database files 1% 阅读全文
posted @ 2022-07-04 21:48 unicoe 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 创建项目 https://zhuanlan.zhihu.com/p/267286129 挑选docker镜像 https://www.cnblogs.com/woshimrf/p/node-docker-image.html 进行部署 https://juejin.cn/post/706572486 阅读全文
posted @ 2022-03-28 15:16 unicoe 阅读(57) 评论(0) 推荐(0) 编辑
摘要: Oracle数据库,用户名密码会半年过期 需要通过命令将密码改了 alter user 用户名 identified by 新密码; 然后解除oracle数据库账户锁定 alter user user_name account unlock; 涉及使用Oracle数据库密码的有,navicat,os 阅读全文
posted @ 2021-12-25 10:06 unicoe 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-11-15 16:34 unicoe 阅读(11) 评论(0) 推荐(0) 编辑
摘要: package cn.linkey.servlet; import java.io.IOException; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServlet; import j 阅读全文
posted @ 2021-10-20 22:35 unicoe 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 昨天更改了oracle数据库的最大连接数,然后手动重启了docker,以为数据库就直接启动了,没想到报错了 报错类似于一下文章 https://blog.csdn.net/h106140873/article/details/103251534 SQL> startup ORA-00821: Spe 阅读全文
posted @ 2021-10-14 08:59 unicoe 阅读(704) 评论(0) 推荐(0) 编辑
摘要: 1、查看当前的数据库连接数 select count(*) from v$process ; --当前的数据库连接数 2、数据库允许的最大连接数 select value from v$parameter where name ='processes'; --数据库允许的最大连接数 3、修改数据库最 阅读全文
posted @ 2021-10-14 08:54 unicoe 阅读(6939) 评论(0) 推荐(0) 编辑
摘要: 参考教程:https://www.cnblogs.com/joker-dj/p/12654493.html pom.xml文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0 阅读全文
posted @ 2021-09-25 13:46 unicoe 阅读(242) 评论(0) 推荐(0) 编辑