国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

FetchingAcrossCommits:WhereIstheSourceoftheProblem?

2024-07-21 02:40:08
字體:
來源:轉載
供稿:網友
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. 讀這種文章還是有收獲的。讓你明白一些事情。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 乡城县| 嘉荫县| 卢氏县| 梁河县| 徐汇区| 翁牛特旗| 仙桃市| 永丰县| 城固县| 江永县| 沁阳市| 措勤县| 龙山县| 和政县| 义乌市| 淅川县| 龙岩市| 象州县| 罗平县| 元朗区| 贵南县| 稻城县| 泗水县| 常州市| 尼勒克县| 蒙山县| 广宁县| 南陵县| 元朗区| 南通市| 中山市| 四子王旗| 江津市| 托克托县| 乌鲁木齐县| 陆川县| 志丹县| 台州市| 彰武县| 七台河市| 枣强县|