摘要:
Declare @tmp1 varchar(255), @tmp2 varchar(50); declare @tmp3 int, @tmp4 int, @tmp5 int; Declare MyCursor Cursor for Select distinct tmp1, tmp2 From ta 阅读全文
摘要:
新版的 Docker 使用 /etc/docker/daemon.json(Linux) 或者 %programdata%\docker\config\daemon.json(Windows) 来配置 Daemon。 请在该配置文件中加入(没有该文件的话,请先建一个): { "registry-mi 阅读全文
摘要:
我使用的是root命令 操作系统:CoreOS_2345_3.0_x64 执行命令,将<username>替换为用户名 # sudo vi /etc/sudoers.d/<username> 然后输入一下内容保存 <username> ALL=(ALL) NOPASSWD:ALL 然后使用该user 阅读全文
摘要:
如果不添加 参数的话,默认是本地化的。 Explanation: t gives the first character of the AM/PM designator (the localized designator can be retrieved in DateTimeFormatInfo. 阅读全文
摘要:
Ckeditor5在编辑模式是通过js加载样式的,但是在显示时没有提供,官方提供了两种方式来实现。 https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/content styles.html By taking i 阅读全文
摘要:
在数据库view的创建中,会遇到一些跨数据库的view脚本,但是在将view更新到production的时候可能忘记更改database name,导致出现一些问题。 以下脚本可以检查出包含某个关键字的view name,只需要修改 条件即可 TSql type(v,fn,p) select nam 阅读全文
摘要:
报名时间未定 "河南省高等教育自学考试2018年上半年报名考试日程安排" 阅读全文
摘要:
使用root账号登录CoreOS username 为你要添加的用户登录名 添加用户到root组 添加 sudo 权限 打开文件输入 保存退出 使用username登录系统,然后执行下面代码检查是否授权成功 参考:https://coreos.com/os/docs/latest/adding us 阅读全文
摘要:
最近在学习DotNetCore并做一个自己的小项目,分为了多个数据库,AccountDbContext和BlogDbContext, 发blog的时候需要用到Account的信息,但是再Blog中只记录了UserID,然后用到了如下代码: 但是目前来说貌似不支持,通过各种搜索,倒是有一个改xml的方 阅读全文
摘要:
在Docker中安装了dotnetcore 2.0.0 的sdk,没有发现可用的编辑器,该sdk是基于debian:stretch构建的,以前没玩过debian,因为CentOS玩的多一些所以对vim熟一些,所以继续入vim的坑,但是根据搜到的结果执行 没有任何内容,执行 同样无效。 可以先执行 然 阅读全文