上一页 1 2 3 4 5 6 7 ··· 36 下一页
摘要: 转自:https://blog.csdn.net/weixin_44138647/article/details/103589130 一、启动用户和nginx工作用户不一致所致 查看nginx的启动用户:打开nginx.conf文件 vi conf/nginx.conf user nginx; 改为 阅读全文
posted @ 2023-10-31 14:23 xh_Blog 阅读(3734) 评论(0) 推荐(0) 编辑
摘要: 如下 Right(str,length); Right(str,length) 功能从字符串右端取指定个数字符。 参数string:string类型,指定要提取子串的字符串;n:long类型,指定子串长度返回值String。函数执行成功时返回string字符串右边n个字符,发生错误时返回空字符串(" 阅读全文
posted @ 2023-10-26 20:42 xh_Blog 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 如下: -- 导入数据库之前做准备 SET GLOBAL log_bin_trust_function_creators=TRUE; -- 导出 windows导出命令:mysqldump -u root -p xxx_bms --routines >d:/xxx_bms.sql linux导出命令 阅读全文
posted @ 2023-10-11 12:13 xh_Blog 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 解决办法:1、查看用户进程情况 select saddr,sid,serial#,paddr,username,status from v$session where username is not null;2、找到要删除用户的sid、serial,kill进程 alter system kill 阅读全文
posted @ 2023-09-13 14:21 xh_Blog 阅读(881) 评论(0) 推荐(0) 编辑
摘要: 如下: directory 用于数据泵 导入、导出创建的目录。 1、查询directory目录 select * from dba_directories; 2、创建或者修改 directory目录 create or replace directory 目录名称 as '/存放目录路径' 3、赋权 阅读全文
posted @ 2023-09-01 18:39 xh_Blog 阅读(2711) 评论(0) 推荐(0) 编辑
摘要: https://www.pdfpai.com/ 阅读全文
posted @ 2023-08-16 17:31 xh_Blog 阅读(33) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-08-08 15:12 xh_Blog 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 如下: 1、宋体字体安装 描述:因流程服务中所选用的为宋体,而linux服务器本身没有宋体,因此需要额外安装宋体,安装字体步骤如下: (1)在自己的电脑windows中搜索宋体字体文件simsun.ttc (2)创建文件夹:mkdir /usr/share/fonts/zh_CN,并将字体文件拷贝到 阅读全文
posted @ 2023-08-07 16:37 xh_Blog 阅读(3241) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/qq_34591972/article/details/131103536 如下: 1. 使用STOP SLAVE命令。这个命令会停止复制从主服务器的更新,直到使用START SLAVE命令恢复为止。可以在从服务器上使用以下命令: STOP SLAV 阅读全文
posted @ 2023-08-04 15:06 xh_Blog 阅读(632) 评论(0) 推荐(0) 编辑
摘要: 转自:https://outofmemory.cn/tougao/8038602.html 如下 谷歌浏览器书签并不是以文件夹的方式保存,而是保存在一个Bookmarks文件中。查看该文件位置方法: 打开谷歌浏览器,在地址栏中输入chrome://version/ 按回车键打开。 这时可以看到具体的 阅读全文
posted @ 2023-08-04 10:46 xh_Blog 阅读(4854) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 36 下一页