Oracle做insert或者update时未提交事务导致表锁定解决办法 //查看被锁定表有几个 select object_name,machine,s.sid,s.serial# from v$locked_object l,dba_objects o ,v$session s where l. ...
分类:
数据库 时间:
2020-06-28 18:22:04
阅读次数:
193
参考资料: https://www.yoyomooc.com/yoyomooc/52.keeping-domain-models-and-database 删除尚未应用到数据库的最新迁移 删除已经应用到数据库的迁移 EF Core删除迁移的命令是Remove-Migration。一次只删除一个迁移, ...
分类:
其他好文 时间:
2020-06-28 12:58:04
阅读次数:
122
1.oracle 用户环境: 主库: [oracle@hzmtx admin]$ cat ~/.bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi ...
分类:
数据库 时间:
2020-06-28 00:20:49
阅读次数:
82
恢复内容开始 Range Sum Query 2D - Immutable (M) 题目 Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left cor ...
分类:
其他好文 时间:
2020-06-27 09:36:59
阅读次数:
61
1. 连接查询的补充 (1) 内连接查询(两张表匹配的部分,比如这个学生即在学生表、又在成绩表) 主表 inner join 从表 on 主键=外键 => where 主键=外键 select * from info inner join mark on info.sid=mark.sid sele ...
分类:
数据库 时间:
2020-06-26 18:40:13
阅读次数:
56
网上百度说是在mutation外修改state中的状态值,会报下列错误,可我明明在mutations中修改的状态值,还是报错接着百度,看到和我类似的问题,说mutations中只能用同步代码,异步用actions,我试着把修改值放在请求外面,结果不报错了参考:https://segmentfault... ...
分类:
其他好文 时间:
2020-06-26 12:50:44
阅读次数:
59
Hive、Spark SQL和Impala三种分布式SQL查询引擎都是SQL-on-Hadoop解决方案,但又各有特点。前面已经讨论了Hive和Impala,本节先介绍一下SparkSQL,然后从功能、架构、使用场景几个角度比较这三款产品的异同,最后附上分别由cloudera公司和SAS公司出示的关 ...
分类:
数据库 时间:
2020-06-25 21:29:31
阅读次数:
581
原来用户执行sql会存储在desktop_document2表中,用户可以在前端界面对其进行删除,为了优化审计,建立一个新表desktop_document2_history,并建立一个触发器,实时更新。 添加一个触发器,记录所有用户的执行sql DROP TABLE IF EXISTS `desk ...
分类:
其他好文 时间:
2020-06-25 21:10:50
阅读次数:
128
每个账户都有自己唯一的SID(Security Identifier). 可以将前面的数值理解为一台计算机的唯一值,后面的500是用户ID(UID). 在Windows中系统管理员的UID为500.任何普通用户的UID是从1000开始的. 密码存储的位置 : C:\Windows\system32\ ...
分类:
其他好文 时间:
2020-06-25 15:21:54
阅读次数:
90
import Vue from 'vue' import Router from 'vue-router' import Home from '@/components/Home' Vue.use(Router) const router = new Router({ mode: 'history' ...
分类:
其他好文 时间:
2020-06-24 23:28:16
阅读次数:
68