1 使用sql查询每个学生a_id最常借图书类型u_id、表名:t1 (学生图书借阅) 【问题分析,1 先选出每个学生,每个类型所借数量】 SELECT a_id,u_id,count(u_id) as a from t1 GROUP BY a_id,u_id ORDER BY a desc; 2 ...
分类:
数据库 时间:
2018-09-15 12:19:46
阅读次数:
207
逻辑卷快照的功能是将逻辑卷的数据保存备份、以及快速的数据恢复 查看逻辑卷的详细信息:vgdisplay 对vg01卷组的lv01逻辑卷做一个名称为SNAP而大小为150M的逻辑卷快照: lvcreate -L 150M -s -n SNAP /dev/rhcsa/vo 查看逻辑卷和快照的信息: lv ...
分类:
其他好文 时间:
2018-09-13 17:26:17
阅读次数:
190
52、In one of your databases: 1. USER1 and USER2 have no system privileges. 2. ROLE1 only has these privileges: * create session * create table * creat ...
分类:
其他好文 时间:
2018-09-13 11:02:14
阅读次数:
156
在什么情况下使用线程池? 1.单个任务处理的时间比较短;2.需要处理的任务的数量大;使用线程池的好处: 1.减少在创建和销毁线程上所花的时间以及系统资源的开销。2.如不使用线程池,有可能造成系统创建大量线程而导致消耗完系统内存以及”过度切换”。 线程池的概念和原理 线程池是一种多线程处理方法,处理过 ...
分类:
编程语言 时间:
2018-09-12 14:31:17
阅读次数:
151
1. HashTable和HashMap的区别 HashMap和Hashtable都实现了Map接口。主要区别:线程安全性,同步(synchronization),以及速度。 1、HashMap是非synchronized,而Hashtable是synchronized,这意味着Hashtable是 ...
分类:
其他好文 时间:
2018-09-12 11:15:47
阅读次数:
137
46、Which three are true about undo segments and undo tablespaces in the same database and instance? A. Multiple transactions run by the same Oracle us ...
分类:
其他好文 时间:
2018-09-12 11:12:01
阅读次数:
251
C*M....死于update的一个long long写成int了 心累 不想写过程了 ******** 树状数组,一个平的一个斜着的,怎么斜都行 题库链接:https://nanti.jisuanke.com/t/31460 ...
分类:
其他好文 时间:
2018-09-11 01:02:04
阅读次数:
149
37、You are planning a software installation for both Oracle Database 11g Release 1 and Release 2. You plan to have at lease one database for each rele ...
分类:
其他好文 时间:
2018-09-07 14:00:00
阅读次数:
212
38、Which two are true about data dictionary and dynamic performance views (v$ views)? A) All database users have access to ALL_* views. B) Data dictio ...
分类:
其他好文 时间:
2018-09-07 13:52:34
阅读次数:
174
35、Which is true about the SYSTEM and SYSAUX tablespaces? A) The SYSAUX tablespace can be made read-only but the SYSTEM tablespace cannot. B) Both tab ...
分类:
其他好文 时间:
2018-09-06 12:36:36
阅读次数:
141