2011年12月23日
摘要: 一.相关概述在之前的Bulk的那篇blog里提到了Oracle 的2个引擎:PL/SQL 引擎和SQL 引擎。Oracle PL/SQL 优化与调整 -- Bulk 说明http://blog.csdn.net/tianlesoftware/article/details/6578351 Oracle使用2个引擎来执行SQL和代码块:SQL引擎和PL/SQL引擎,Oracle使用这2个引擎来执行PL/SQL blocks和subprograms。那么在执行的时候,PL/SQL引擎把DML语句发送给SQL引擎,然后由SQL引擎执行,执行完毕后,SQL引擎把结果集在发送给PL/SQL引擎。因此在不 阅读全文
posted @ 2011-12-23 22:05 springside例子 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 灵活的运用数据绑定操作 绑定到简单属性:<%#UserName%> 绑定到集合:<asp:ListBox id="ListBox1" datasource='<%# myArray%>' runat="server"> 绑定到表达式:<%#(class1.property1.ToString() + "," + class1.property2.ToString())%> 绑定到方法返回值:<%# GetSafestring(str) %> 绑定到Hashta 阅读全文
posted @ 2011-12-23 16:20 springside例子 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 官网的链接:http://docs.oracle.com/cd/E11882_01/server.112/e16638/instance_tune.htm#PFGRF13015一.Instance Recovery Instance andcrash recovery are the automatic application of redo log records to Oracle datablocks after a crash or system failure. During normal operation, if an instanceis shut down cleanly ( 阅读全文
posted @ 2011-12-23 00:52 springside例子 阅读(632) 评论(0) 推荐(0) 编辑