Alf Burke wrote:
Does anyone know how to set a cursor at (say) row 10 of a 100 row table
and then have all subsequent inserts insert at the cursor position?
Whenever anyone asks me a question like this, I ask them,
"Why do you want to do this?"
If you care what "physical" order your rows are stored in (as this
question seems to imply), then you probably don't have the right
design yet. Your design should not depend on physical order because
relational databases (typically) make no guarantee on storage or
retrieval order. It's up to you to design the tables and the
relationships between them and your select statements to get what
you need.