1设定环境如下: Primary数据库 IP 172.17.22.16 SID orcl Standby数据库 IP 172.17.22.17 SID orcl 设置提示,以区分操作的位置 primary数据库 set SQLPROMPT Primary> standby数据库 set SQLPRO ...
分类:
数据库 时间:
2020-01-01 23:53:52
阅读次数:
130
//普通集合List去重方法 public List<floorMapper> removethesame(List<floorMapper> list) { //创建一个临时集合装去重后的数据 List<floorMapper> tempList = new ArrayList<floorMapp ...
分类:
编程语言 时间:
2019-12-31 18:49:24
阅读次数:
74
使用sp_MSForEachTable这个系统存储过程。 创建一张临时表,它有2个字段,[Table_Name]和[Total_Records]。 然后使用sp_MSForEachTable来处理,把结果插入上面创建的临时表中。如果Total_Records为0的,说明此表没有任何记录。 DROP ...
分类:
数据库 时间:
2019-12-27 20:25:40
阅读次数:
136
回归图只要探讨两连续数值变量的变化趋势情况,绘制x-y的散点图和回归曲线。 1.lmplot seaborn.lmplot(x, y, data, hue=None, col=None, row=None, palette=None, col_wrap=None, height=5, aspect= ...
分类:
其他好文 时间:
2019-12-25 20:49:21
阅读次数:
738
Description Given an integer array nums with all positive numbers and no duplicates, find the number of possible combinations that add up to a positiv ...
分类:
其他好文 时间:
2019-12-21 22:30:21
阅读次数:
119
Description Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), guarantee that at least one duplicate num ...
分类:
其他好文 时间:
2019-12-21 20:53:19
阅读次数:
114
jqgrid 前端分页 前提: 不能进行后台分页,或者后台添加分页比较麻烦的话, 打算采取前端分页 后台只需要查询全部数据,返回到前端 jqgrid需要后台返回的参数 { page:当前页(默认第一页 =1), total :总页数 (数据库返回总条数/页面分页配置显示的条数), records:数 ...
分类:
其他好文 时间:
2019-12-21 15:33:27
阅读次数:
118
今天进行sql查询时,碰到了一个问题: SQL语句: select r.user_id, r.job_id, sum(t.money) as job_salary from pj_punch_records as r left join pj_punch_transactions as t on r ...
分类:
数据库 时间:
2019-12-20 20:18:13
阅读次数:
297
Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate number must exist. ...
分类:
其他好文 时间:
2019-12-19 12:50:24
阅读次数:
95
### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'admin' for key 'user_ ...
分类:
数据库 时间:
2019-12-15 16:09:03
阅读次数:
361