Roeland
Member³
I have a Index organized Table that I wanted to edit in the grid.
So I wrote:
select t.*, t.rowid from Tst_Iot t;
Result was (for 1 record)
But the same query in SQLPLus generated this result
Notice that in SQLPlus there was an extra character (eg: "4") added to the rowid? Can it be that you are stripping rowids for IOT's?
When I edited this record and tried to post it, I received an error with "Record is locked by another user".
But when I wrote an update statement that references the "tekst" and not the rowid everything was updated nicely.
I'm sure you can fix this.
Roeland
So I wrote:
select t.*, t.rowid from Tst_Iot t;
Result was (for 1 record)
Code:
Tekst OK ROWID
-----------------------
HASPATH F *BAFDofwHSEFTUEFUSP
But the same query in SQLPLus generated this result
Code:
Tekst OK ROWID
-----------------------
HASPATH F *BAFDofwHSEFTUEFUSP4
Notice that in SQLPlus there was an extra character (eg: "4") added to the rowid? Can it be that you are stripping rowids for IOT's?
When I edited this record and tried to post it, I received an error with "Record is locked by another user".
But when I wrote an update statement that references the "tekst" and not the rowid everything was updated nicely.
I'm sure you can fix this.
Roeland