--1,随机抽取一条数据select column from (select * from table
order by dbms_random.value ) where rownum = 1;--2,选取一个表中的重复数据select column from
table group by col...
分类:
数据库 时间:
2014-06-09 20:00:42
阅读次数:
211
目标 1.SGA结构 2.PGA结构1.SGAShared pool
1)、共享池是对SQL、PL/SQL程序进行语法分析、编译、执行的内存区域。 在执行SELECT * FROM
emp语句时,会对sql语句进行语法分析->编译->生成执行计划->运行执行计划等,这些操作都在共...
分类:
数据库 时间:
2014-06-09 19:31:24
阅读次数:
328
SELECT
FSAV.USER_NAME,FU.DESCRIPTION,FSAV.RESPONSIBILITY_NAME,FSAV.USER_FORM_NAME,FSAV.LOGIN_NAME,FSAV.TIME,FSAV.PID,FSAV.TERMINAL_ID,FSAV.USER_ID,FSA...
分类:
数据库 时间:
2014-06-09 18:11:09
阅读次数:
282
select distinct
l.profile_option_name,v.profile_option_value,fu.user_nameform
applsys.fnd_profile_option_values v, apps.fnd_profile_options_vl l,apps....
分类:
数据库 时间:
2014-06-09 17:38:39
阅读次数:
317
查询DBA在系统中的打补丁信息1.select * from ad_patch_drivers
/*查看已经打了哪些Patch*/2.select * from ad_patch_runs/*查看打patch的时间,目录等信息*/3.select *
from ad_patch_driver_lan...
分类:
数据库 时间:
2014-06-09 17:37:18
阅读次数:
403
select aa.menu_name, aa.user_menu_name,
aa.type, aa.description, aa.ENTRY_SEQUENCE, aa.prompt, aa.sub_user_menu_name,
aa.user_function_name, aa.des...
分类:
数据库 时间:
2014-06-09 17:36:37
阅读次数:
352
当RadioGroup与CompoundButton同时存在且都要监听事件时CompoundButton.OnCheckedChangeListener与RadioGroup.OnCheckedChangeListener就会出现冲突,导入任何一个包import
android.widget.Rad...
分类:
数据库 时间:
2014-06-09 16:25:25
阅读次数:
505
hibernate.cfg.xml
oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@localhost:1521:orcl system
orcl ...
分类:
其他好文 时间:
2014-06-09 16:18:09
阅读次数:
344
禁止开机启动后Oracle
无法连接,转来:http://blog.sina.com.cn/s/blog_4aeef1220100fmsr.htmlTNS-12560: TNS:
协议适配器错误Microsoft Windows [版本 5.2.3790](C) 版权所有 1985-2003 Mic...
分类:
数据库 时间:
2014-06-09 14:02:14
阅读次数:
562
原文:javascript的事件处理
首先了解一下什么是事件?事件是web浏览器通知应用程序发生了什么事情。我们可以通过一些方式注册事件用来监听一些我们需要处理的事件。事件包含一下一些属性:
事件类型:用来说明是什么类型事件的字符串 事件处理程序:监听了某个事件想让他做的事情 事件对象:特定的事件类...
分类:
编程语言 时间:
2014-06-08 19:41:27
阅读次数:
251