摘要: mvn打包到私服 1 命令行打包 待定... 2 idea打包 1> 配置 pom.xml <!-- 远程仓库 --> <repositories> <!-- 私服nexus仓库 --> <repository> <id>nexus-repository</id> <url>${nexus.repo 阅读全文
posted @ 2019-08-23 17:10 一人一见 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 查询表空间利用率--考虑自增长情况,此处利用率考虑的是相对于阀值的表空间利用率 select a.tablespace_name, total || 'M', free+shortNum|| 'M' free, total-free-shortNum || 'M' as used,Round((fr 阅读全文
posted @ 2019-08-23 16:10 一人一见 阅读(937) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/vertual/article/details/34540555 ORACLE里锁有以下几种模式: 0:none 1:null 空 2:Row-S 行共享(RS):共享表锁,sub share 3:Row-X 行独占(RX):用于行的修改,sub e 阅读全文
posted @ 2019-08-23 10:59 一人一见 阅读(17193) 评论(0) 推荐(0) 编辑