源地址忘记了 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using ...
个人理解Oracle的process类似于MySQL的connection 若连接数超过process时,通过sqlplus登陆Oracle会有如下报错。 ERROR: ORA-00020: maximum number of processes (40) exceeded 使用ps -ef|gre ...
分类:
数据库 时间:
2020-03-19 17:43:25
阅读次数:
63
如是tomcat 进程占用CPU 过高可以参考以下步骤打印进程堆栈进一步分析问题。 1、先用top查看占用cpu的进程id 2、再用ps -ef | grep PID定位具体的进程主体;如是否是tomcat启动的java程序 3、用ps -mp pid -o THREAD,tid,time打印出该进 ...
分类:
其他好文 时间:
2020-03-16 23:51:13
阅读次数:
172
using System.Collections.Generic; using System.Linq; using System.Security.Claims; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http ...
分类:
其他好文 时间:
2020-03-15 23:57:29
阅读次数:
245
因为对C#不是特别熟悉,但是最近写个c#的demo,需要对获取的的json字符串进行解析,开始使用Newtonsoft.Json.Linq尝试了以下,但是感觉操作起来比较麻烦,尤其对与JSON结构比较深的情况。可能是习惯了其它语言的方式,很想能找到类似的方法。 最终了解到System.Web.Scr ...
在项目根目录下打开执行 1.增加迁移 > dotnet ef migrations add 名字 2.删除最近一次的迁移 > dotnet ef migrations remove 3.更新数据库 >dotnet ef database update 4.生成脚本 >dotnet ef migrat ...
分类:
Web程序 时间:
2020-03-14 22:12:23
阅读次数:
90
之前用过.Net Framework 的EF功能,现在记录下.Net Core环境下的学习情况,以方便之后部署环境使用。 首先创建一个.Net Core Web端程序,我用的是vs可视化界面创建的,控制台端命令模式创建没有研究 打开程序包管理器控制台输入 install-package Micros ...
分类:
数据库 时间:
2020-03-14 19:58:49
阅读次数:
73
1.检查MySQL服务器是否启动:ps -ef | grep mysqld 如果MySql已经启动,以上命令将输出mysql进程列表,如下所示:mysql下一行 如果mysql未启动,你可以使用以下命令来启动mysql服务器: root@host# cd /usr/bin ./mysqld_safe ...
分类:
数据库 时间:
2020-03-14 16:22:43
阅读次数:
80
错误描述: 1. U811.1 SqlServer数据库CurrentStock表,没有常规主键,对接系统时使用EF Code First提示: 生成过程中发现错误:警告 6002: 表/视图“***.dbo.CurrentStock”未定义主键。已推断出该键,并将定义创建为只读的表/视图。 2. ...
分类:
数据库 时间:
2020-03-14 14:53:19
阅读次数:
108
https://developers.arcgis.com/labs/pro/build-a-map-layout/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using ...
分类:
其他好文 时间:
2020-03-14 01:10:44
阅读次数:
115