##主创建表空间备宕机 --主创建表空间 [root@pg93 ~]# mkdir /tbs_test [root@pg93 ~]# chown postgres:postgres /tbs_test [root@pg93 ~]# su - postgres [postgres@pg93 ~]$ p ...
分类:
其他好文 时间:
2021-02-06 12:14:14
阅读次数:
0
Net Core使用Log4net报错,添加代码即可 static void Main(string[] args){ System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); } 转 ...
分类:
移动开发 时间:
2021-02-06 12:11:25
阅读次数:
0
众所周知,数据库里面包含各种数据表,而数据表里面又是各种记录,当然还有字段。AUTOCAD里面对于图形的管理也是基于图形数据库的。因此,想要在DWG里面添加一条直线,只需要做三件事: (1)打开数据表 (2)把直线放进去 (3)关闭数据表 听起来跟把大象关进冰箱里面差不多哈。。。。 图形数据库里面有 ...
分类:
其他好文 时间:
2021-02-06 11:38:44
阅读次数:
0
备用: 在调试一个前后端分离的项目,发现登录成功后已经把信息保存到session中了,再从session中取得当前用户信息的时候发现取不到,debug发现sessionId已经变了,自己网上查了很多资料,并不准确, 把自己的解决分享给大家: 后端拦截器: //拦截器添加跨域支持(如果是web.xml ...
分类:
其他好文 时间:
2021-02-05 10:40:40
阅读次数:
0
SSH: Disconnecting configuration [192.168.2.68] ... ERROR: Exception when publishing, exception message [Exec timed out or was interrupted after 120,0 ...
分类:
其他好文 时间:
2021-02-05 10:37:04
阅读次数:
0
Search in VS Code for multiple terms? 在搜索框输入下面格式即可。 (word1[\s\S]*word2) | (word2[\s\S]*word1) 文章来源:刘俊涛的博客 欢迎关注公众号、留言、评论,一起学习。 ________________________ ...
分类:
其他好文 时间:
2021-02-05 10:34:11
阅读次数:
0
判断服务是否存在,存在就直接启动,不存在则创建后启动,引号里的内容替换成自己的服务名即可 @echo off sc query SAVUS_SFCJSService |findstr /i "STATE">nul if not errorlevel 1 (goto exist) else goto ...
let require = ()=>{throw new Error('函数必须传参')} let print = (num=require())=>{console.log(num)} print(2) // 2 print(null) // null print() // 报错 ...
分类:
其他好文 时间:
2021-02-04 11:52:57
阅读次数:
0
1.选择时间范围的时候 //此处是循环表单,v-for = item in objArr objArr: [ { id: 1, pattern: "白天模式", upTime: "08:00", downTime: "18:00", notificationMethod: 1, modelUrgen ...
分类:
其他好文 时间:
2021-02-04 11:49:38
阅读次数:
0
版本信息:Navicat Premium 15.0.12 错误情况: 用Navicat连接Oracle数据库时报错ORA-28547:connection to server failed,probable Oracle Net admin error 解决方案: 1、到下面网址下载OCI http ...
分类:
数据库 时间:
2021-02-04 11:46:08
阅读次数:
0