网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
本月文章推荐
.[Oracle]大数据类型的操作之CLOB.
.深入讲解Oracle数据库的多栏输出.
.Oracle PL/SQL语言初级教程之异常.
.如何把数据导入不同的表空间?.
.使CREATETABLEASSELECT能支持ORD.
.SQL优化思考.
.oracle中关于数据库和表的问题.
.Oracle Online Redo LogFile.
.Oracle诊断案例-Job任务停止执行.
.Linux Shadow-Password-HOWTO.
.Application Server额外功能.
.对oracle日期格式的认识.
.存储管理——深入Oracle 9i核心.
.Oracle诊断案例-SGA与Swap之一.
.保证Oracle数据库安全性的策略和.
.在标识列里插入特定的值.
.通过ORACLE APPLICATION SERVER实.
.关于“专用服务器进程”和“多线.
.[Oracle]Oracle10g闪回恢复区详细.
.Oracle提供标准函数,对字符集名.

FetchingAcrossCommits:WhereIstheSourceoftheProblem?

发表日期:2008-2-9


Fetching Across Commits: Where Is the Source of the Problem? By Boris Milrud Fetching across commits is a common and accepted practice in the Oracle programming world. However, it is not an ANSI-supported operation. According to the ANSI standard, a cursor is invalidated whenever a commit is performed, which means it should be closed and reopened. Hence, you should be aware of potential ORA-01555 errors and the fact that you are relying on a cursor behavior that is not to the ANSI standard. Oracle always enforces statement-level read consistency. This guarantees that the data returned by a single query is consistent with respect to the time when the query began. Therefore, a query never sees the data changes made by the transactions that commit during the course of a query's execution. As I described in ASP">my previous 10-Minute Solution on this subject, Oracle uniquely identifies any given point in time by a set of numbers, called the System Change Numbers. To ensure read consistency, Oracle marks the current SCN as the query enters the execution phase. The query can see the snapshot of the records only as they were at the time that they were marked by, or assigned to, the SCN. This is the situation when a query opens a cursor, then loops through fetching, changing, and committing the records on the same table. The cursor requires a "snapshot" of the data at the cursor's open time for read consistency. As data blocks are read on behalf of the query and each block contains uncommitted changes of other transactions or changed data with more recent SCNs, the data is then reconstrUCted using the saved snapshot from the rollback segments. During a long-running query, undo entries in the rollback segment may get overwritten by another transaction, even from the same query. In this case, the Oracle server would be unable to reconstruct the snapshot, resulting in the ORA-01555 error. Here's an example: A cursor is opened at SCN=10. The execution SCN of the query is then marked as SCN=10. Every fetch by that cursor now needs to get the read-consistent data from SCN=10. Code in the stored procedure is fetching records from the cursor, changing them, and committing them. Let's say they were committed with SCN=20. If a later fetch happens to retrieve a record that's in one of the previously committed blocks, then the fetch will see that the current block SCN is 20. Because the fetch has to get the snapshot from SCN=10 it will try to find it in the rollback segments. If it can roll sufficiently back as previously eXPlained, then it will be able to reconstruct the snapshot from SCN=10. If not, it will return the ORA-01555 error.
Committing less often, thus creating larger rollback segments, will reduce the probability of getting this error. The only drawback to this is that the developer has to contact the DBA and make sure the rollback segments can be extended, and that the rollback tablespace can accommodate them. 读这种文章还是有收获的。让你明白一些事情。
上一篇:LOG FILE 归档怎样做 人气:637
下一篇:oracle10g ias 在aix 5l安装纪实 人气:815
浏览全部Oracle教程的内容 Dreamweaver插件下载 网页广告代码 祝你圣诞节快乐 2009年新年快乐