码迷,mamicode.com
首页 >  
搜索关键字:execute immediate    ( 3035个结果
oracle11 表空间dbf文件迁移
当oracle的数据文件所在的磁盘空间不够用了或其他情况需要把dbf文件迁移到另外的位置,下面是操作步骤: 1、sqlplus sys/sys as sysdba 2、shutdown immediate 3、copy dbf文件到新的位置 4、startup mount; 5、alter database rename file 'E:\oracle\oradata\hqbi\EFMW...
分类:数据库   时间:2014-08-13 19:07:57    阅读次数:222
《java.util.concurrent 包源码阅读》10 线程池系列之AbstractExecutorService
AbstractExecutorService对ExecutorService的执行任务类型的方法提供了一个默认实现。这些方法包括submit,invokeAny和InvokeAll。注意的是来自Executor接口的execute方法是未被实现,execute方法是整个体系的核心,所有的任务都是在...
分类:编程语言   时间:2014-08-13 18:23:26    阅读次数:305
ORA-03113解决方法
场景:碰到ORA-00257归档日志写满的解决方法这篇日志当中描述的归档日志写满的情况。此时我想将数据库切换到非归档模式,参考如何启动或关闭oracle的归档(ARCHIVELOG)模式进行操作,但是在执行shutdown immediate;的时候卡死。此时我重启了windows oracle 数...
分类:其他好文   时间:2014-08-13 18:07:56    阅读次数:195
《java.util.concurrent 包源码阅读》09 线程池系列之介绍篇
concurrent包中Executor接口的主要类的关系图如下:Executor接口非常单一,就是执行一个Runnable的命令。public interface Executor { void execute(Runnable command);}ExecutorService接口扩展了E...
分类:编程语言   时间:2014-08-13 17:44:56    阅读次数:220
oracle 全文检索
一、使用 sys 用户登录oracle(1)运行—cmd—sqlplus — sys/密码 @连接字符 as sysdba二、授权1、grant ctxapp to 全文检索使用用户;2、grant execute on ctx_dll to 全文检索使用用户;3、全文检索使用用户 登录oracle...
分类:数据库   时间:2014-08-13 12:40:06    阅读次数:230
Unable to execute dex: Multiple dex files define
在 clean project 后,并没有报错,但是在'Run as Android Application' 的时候就会报出这样的错。1 Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files de...
分类:其他好文   时间:2014-08-13 00:27:34    阅读次数:320
Android-Cannot merge new index 66195 into a non-jumbo instruction的解决的方法
转载请注明来源:http://blog.csdn.net/goldenfish1919/article/details/33729679用eclispe打包的时候报错:[2014-06-23 13:44:35 - Dex Loader] Unable to execute dex: Cannot m...
分类:移动开发   时间:2014-08-12 16:34:34    阅读次数:231
PX Deq: Execution Msg,PX Deq: Execute Reply等待事件
PX Deq: Execution Msg Occurs when a parallel slave is waiting to be told what to do. This is normally considered an idle event, but can cause excessive CPU in some cases. Solution Reduc...
分类:其他好文   时间:2014-08-11 21:38:52    阅读次数:485
高效分页 asp
'每页的记录数 dim pagesize pagesize= "30" '读出总记录数,总页数,作者注 Dim TotalRecords,TotalPages SQLstr="Select count(id) As RecordSum From table1" Set Rs=conn.Execute(SQLstr,0,1) TotalRecords=Rs("RecordSum")...
分类:Web程序   时间:2014-08-11 10:08:31    阅读次数:257
AWR报告的生成和简单分析方法
Buffer nowait: 内存获取数据未等待:99.33% Buffer hit: 进程内存找到数据 100% Redo nowait: 日志缓冲区获得数据未等待:100% Library hit: 找到解析过的SQL:100% Latch hit进程获得内存结构许可比例:99% Parse cpu to parse elapsd:解析未等待比例:116% Non-Parse CPU :sql语句执行时间占总解析时间的比例:97.08% Execute to parse: SQL重用率:6...
分类:其他好文   时间:2014-08-09 15:54:38    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!