ORA0410: invalid ROWID [message #191845] |
Fri, 08 September 2006 06:23 |
gajini
Messages: 262 Registered: January 2006
|
Senior Member |
|
|
Hi,
I got this ORA0410: invalid ROWID,while executing a stored procedure,after
started executing the procedure,I rebuilt the index associated with that procedure.
Here is what i did & got,
T1: exec procA
T2: rebuild index
T3: rebuild finishes
T4: ORA0410: invalid ROWID
Clear the follwing things to me,
1. Whether i got ORA0410: invalid ROWID,due to index rebuild during procedure execution or is there any other reason?
2. If I reexecute the same procedure,will it execute successfully or
again it throws ORA0410: invalid ROWID.If the same error will be given
again,then what are all the steps I've to follow before execting this
procedure so that it'll be executed successfully.
Thanks,
Gajini.Hi,
I got this ORA0410: invalid ROWID,while executing a stored procedure,after
started executing the procedure,I rebuilt the index associated with that procedure.
Here is what i did & got,
T1: exec procA
T2: rebuild index
T3: rebuild finishes
T4: ORA0410: invalid ROWID
Clear the follwing things to me,
1. Whether i got ORA0410: invalid ROWID,due to index rebuild during procedure execution or is there any other reason?
2. If I reexecute the same procedure,will it execute successfully or
again it throws ORA0410: invalid ROWID.If the same error will be given
again,then what are all the steps I've to follow before execting this
procedure so that it'll be executed successfully.
Thanks,
Gajini.
|
|
|
|
Re: ORA0410: invalid ROWID [message #192000 is a reply to message #191845] |
Sat, 09 September 2006 14:00 |
oigor
Messages: 8 Registered: September 2006 Location: Athens, GREECE
|
Junior Member |
|
|
Hi,
If you have a long running procedure that involves a cursor that will rely upon the index you rebuild, and if you run it and, while the proc is running, you rebuild the index, then the message "invalid ROWID" is absolutely normal.
The message will not appear next time you execute the procedure, if you don't rebuild your index again during the execution
-------
Igor Obradovic
|
|
|