上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: 方案一:增加临时表空间的大小 1.临时表空间的使用情况题 SELECT D.tablespace_name, SPACE "SUM_SPACE(M)", blocks "SUM_BLOCKS", used_space "USED_SPACE(M)", Round(Nvl(used_space, 0) 阅读全文
posted @ 2020-01-10 14:19 剑小新 阅读(1720) 评论(0) 推荐(0)
摘要: 以下的操作是用数据库的sys超级用户操作 刚开始打算把临时表空间的数据文件重新缩小就好了 执行: SQL alter database tempfile 2 '/oracle/oms/oradata/temp/temp01.dbf' resize 10240M; 数据库报错,重新设置的空间大小不能满 阅读全文
posted @ 2020-01-10 14:17 剑小新 阅读(923) 评论(0) 推荐(0)
摘要: 查询临时表空间有多大: 为什么临时表空间这么大。您可能已经知道答案了。可能是由于您对一个大型查询使用了错误的排序(我已经做了多次以上)。这可能是由于其他一些特殊情况所致。如果是这种情况,那么您要做的就是缩小临时表空间并继续生活。 但是,如果您不知道该怎么办?在决定缩小之前,您可能需要对大型表空间的原 阅读全文
posted @ 2020-01-10 11:25 剑小新 阅读(824) 评论(0) 推荐(0)
摘要: ```sql update CDINFO.Dept_Dict tab1 set PART_FLAG = (select PART_FLAG from DICT.DEPARTMENT_DICT@zyhis4 tab2 where tab1.dept_code = tab2.dept_code) where exists (select 1 from DICT.DEPARTMENT_DICT@zyhi 阅读全文
posted @ 2020-01-08 14:37 剑小新 阅读(753) 评论(0) 推荐(0)
摘要: Don’t Repeat Yourself,Repeat Yourself Don't repeat yourself ( DRY , or sometimes do not repeat yourself ) 是一个旨在减少软件模式重复的软件开发原则,使用抽象或使用数据规范化来代替它以避免冗余。 阅读全文
posted @ 2019-12-20 14:10 剑小新 阅读(459) 评论(0) 推荐(0)
摘要: ```sql select * from ( select t.*,d.TABLE_NAME,d.QUERY_SQL,d.data_control_col,d.id table_id,d.where_sql from REPORT_KPI_INFO t left join REPORT_KPI_TABLE_INFO d on t.id = d.... 阅读全文
posted @ 2019-12-18 14:25 剑小新 阅读(556) 评论(0) 推荐(0)
摘要: autoSizeColumnAll java.lang.IllegalStateException: Could not auto size column. Make sure the column was tracked prior to auto sizing the column. 阅读全文
posted @ 2019-12-13 20:22 剑小新 阅读(4240) 评论(0) 推荐(0)
摘要: ```java public class ArrayStack{ private String[] items; //数组 private int count; //栈内元素 private int n; //栈大小 //初始化 public ArrayStack(int n){ this.items = new String[n]; this.n = n; this.count = 0; } / 阅读全文
posted @ 2019-11-06 09:09 剑小新 阅读(276) 评论(0) 推荐(0)
摘要: 半加器 1. 使用异或操作计算两数之和 00 11 结果为0 10 01 结果为1 2. 使用与操作 当且仅当加数和被加速都为1 进一位 1 1 进位1 全加器 半加器只能计算个位加法,完整加法还需与进位信息相加 需要全加器计算进位信息 使用两个半加器和一个或操作组成全加器 阅读全文
posted @ 2019-11-04 10:02 剑小新 阅读(978) 评论(0) 推荐(0)
摘要: zTreeObj.cancelSelectedNode function 举例 1. 取消当前所有被选中节点的选中状态 var treeObj = $.fn.zTree.getZTreeObj("tree"); treeObj.cancelSelectedNode(); 1 2 取消当前第一个被选中 阅读全文
posted @ 2019-10-29 11:33 剑小新 阅读(5709) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页