Предположим, у меня есть таблица и индекс
original simple table A
------------------------
rowid | id name
123 | 1 A
124 | 4 G
125 | 2 R
126 | 3 P
index on A.id
-------------
id rowid
1 123
2 125
3 126
4 124
На этом этапе я выполняю этот оператор DML
UPDATE A SET id = 5 WHERE id = 4
Что именно происходит при выполнении этого оператора?
а)
BEGIN
go to index
search for `id == 4` (B tree index generally)
find that `rowid = 124`
go to that location
update id in the table
come back (? I am not sure)
update the index
END
б)
BEGIN
go to index
search for `id == 4` (B tree index generally)
update the id value in index
find that `rowid = 124`
go to that location
update id in the table
END
в) Что-то еще полностью происходит
Поскольку это может зависеть от самой базы данных, как это происходит в Oracle?